dev add statistic rest
Test Workflow / test (push) Successful in 3s

This commit is contained in:
vladp
2026-04-15 17:32:07 +07:00
parent 9974e22abe
commit bb41898abf
10 changed files with 238 additions and 1 deletions
@@ -38,7 +38,9 @@ public class HandlerConfig {
NotificationHandler notificationHandler,
UserVerificationHandler userVerificationHandler,
LawCaseHandler lawCaseHandler,
TokenOperationHandler tokenOperationHandler
TokenOperationHandler tokenOperationHandler,
StatisticUserFilesHandler statisticUserHandler,
StatisticTariffInfoFileHandler statisticTariffInfoFileHandler
) {
Map<Integer, RequestHandler> map = new HashMap<>();
map.put(20001, login);
@@ -68,6 +70,8 @@ public class HandlerConfig {
map.put(30016, userVerificationHandler);
map.put(30017, lawCaseHandler);
map.put(30018, tokenOperationHandler);
map.put(30019, statisticUserHandler);
map.put(30020, statisticTariffInfoFileHandler);
return map;
}