dev add monitoring basic
Test Workflow / test (push) Successful in 2s

This commit is contained in:
vladp
2026-03-03 15:43:47 +07:00
parent 404e1a6bee
commit 38e7a382c7
6 changed files with 155 additions and 20 deletions
@@ -28,6 +28,7 @@ public class HandlerConfig {
DaDataHandler daDataHandler,
PaymentHandler paymentHandler,
GetViolationsHandler getViolationsHandler,
CostHandler costHandler,
MonitoringHandler monitoringHandler
) {
Map<Integer, RequestHandler> map = new HashMap<>();
@@ -48,6 +49,7 @@ public class HandlerConfig {
map.put(30005, paymentHandler);
map.put(30006, getViolationsHandler);
map.put(30007, monitoringHandler);
map.put(30008, costHandler);
return map;
}