dev add tariffinfo endpoints
Test Workflow / test (push) Successful in 4s

This commit is contained in:
vladp
2026-02-02 15:47:58 +07:00
parent 3ce8edd7e1
commit c38b86e1b9
5 changed files with 382 additions and 2 deletions
@@ -21,7 +21,8 @@ public class HandlerConfig {
VerifyRegisterUserHandler verifyRegisterUser,
AuthRequestHandler authRequestHandler,
CompanyHandler companyHandler,
TariffHandler tariffHandler
TariffHandler tariffHandler,
TariffInfoHandler tariffInfoHandler
) {
Map<Integer, RequestHandler> map = new HashMap<>();
map.put(20001, login);
@@ -34,6 +35,7 @@ public class HandlerConfig {
map.put(20009, verifyRegisterUser);
map.put(30000, companyHandler);
map.put(30001, tariffHandler);
map.put(30002, tariffInfoHandler);
return map;
}