mirror of
https://github.com/remnawave/node.git
synced 2026-07-03 06:32:41 +00:00
13 lines
400 B
TypeScript
13 lines
400 B
TypeScript
export const HANDLER_CONTROLLER = 'handler' as const;
|
|
|
|
export const HANDLER_ROUTES = {
|
|
REMOVE_USER: 'remove-user',
|
|
ADD_USER: 'add-user',
|
|
ADD_USERS: 'add-users',
|
|
REMOVE_USERS: 'remove-users',
|
|
GET_INBOUND_USERS_COUNT: 'get-inbound-users-count',
|
|
GET_INBOUND_USERS: 'get-inbound-users',
|
|
|
|
DROP_USERS_CONNECTIONS: 'drop-users-connections',
|
|
DROP_IPS: 'drop-ips',
|
|
} as const;
|