feat(ai-character): 관리자 인증 셸 구현

This commit is contained in:
Yu Sung
2026-07-27 15:04:03 +09:00
parent ba43dd829e
commit 5356bd1e6a
82 changed files with 6017 additions and 18 deletions

7
src/app/route-paths.ts Normal file
View File

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