mirror of
https://github.com/remnawave/backend.git
synced 2026-08-04 14:48:33 +00:00
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
export const API_TOKENS_CONTROLLER = 'tokens' as const;
|
|
|
|
export const API_TOKENS_ROUTES = {
|
|
CREATE: '',
|
|
DELETE: (uuid: string) => `${uuid}`,
|
|
GET: '',
|
|
GET_SCOPES: 'scopes',
|
|
OTT: 'ott',
|
|
} as const;
|