dev add statistic files protected
Test Workflow / test (push) Successful in 2s

This commit is contained in:
vladp
2026-04-16 01:08:40 +07:00
parent bbf8e3ee3d
commit 74f9be8bf7
6 changed files with 152 additions and 1 deletions
@@ -45,7 +45,8 @@ public class HandlerConfig {
StatisticProtectedFilesHandler statisticProtectedFilesHandler,
StatisticViolationHandler statisticViolationHandler,
StatisticSubscriberHandler statisticSubscriberHandler,
StatisticTokenHandler statisticTokenHandler
StatisticTokenHandler statisticTokenHandler,
StatisticIncomeHandler statisticIncomeHandler
) {
Map<Integer, RequestHandler> map = new HashMap<>();
@@ -83,6 +84,7 @@ public class HandlerConfig {
map.put(30023, statisticViolationHandler);
map.put(30024, statisticSubscriberHandler);
map.put(30025, statisticTokenHandler);
map.put(30026, statisticIncomeHandler);
return map;
}