Files
voiceon-character-admin/src/app/route-paths.ts
2026-07-27 15:04:03 +09:00

8 lines
198 B
TypeScript

export const routePaths = {
accessDenied: "/access-denied",
login: "/login",
aiCharacters: "/ai-characters",
} as const;
export type RoutePath = (typeof routePaths)[keyof typeof routePaths];