Remnawave_backend/libs/contract/api/controllers/keygen.ts
kastov 004bf4d933
refactor: restructure REST API endpoints for cleaner routing
- Simplifies route definitions by using resource-based paths
- Introduces consistent patterns for CRUD operations
- Moves action-specific routes under dedicated namespaces
2025-05-02 01:21:57 +03:00

5 lines
109 B
TypeScript

export const KEYGEN_CONTROLLER = 'keygen' as const;
export const KEYGEN_ROUTES = {
GET: '',
} as const;