tech stats
All checks were successful
API and ETL Build / build_api (push) Successful in 37s
API and ETL Build / build_etl (push) Successful in 39s

This commit is contained in:
2025-06-19 21:41:16 -03:00
parent ecbf2f07d6
commit 965b693a19
6 changed files with 105 additions and 8 deletions

View File

@@ -27,6 +27,12 @@ namespace OpenCand.API.Controllers
{
return await openCandService.GetDataAvailabilityStatsAsync();
}
[HttpGet("tech")]
public async Task<DatabaseTechStats> GetDatabaseTechStats()
{
return await openCandService.GetDatabaseTechStatsAsync();
}
}
}