mirror of
https://github.com/remnawave/backend.git
synced 2026-08-04 14:48:33 +00:00
6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
export const SUBSCRIPTION_CONTROLLER = 'sub' as const;
|
|
|
|
export const SUBSCRIPTION_ROUTES = {
|
|
GET: '',
|
|
GET_INFO: (shortUuid: string) => `${shortUuid}/info`,
|
|
} as const;
|