From 0e12e7238f48ffc2a5d35dae059c2f00c7250f3b Mon Sep 17 00:00:00 2001 From: yyamashita Date: Sat, 9 May 2026 14:36:28 +0900 Subject: Add /api/export and /api/import endpoints for DB backup and sync Co-Authored-By: Claude Sonnet 4.6 --- app/routes.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/routes.ts') diff --git a/app/routes.ts b/app/routes.ts index d02abf7..1d8d60b 100644 --- a/app/routes.ts +++ b/app/routes.ts @@ -4,6 +4,8 @@ export default [ index("routes/home.tsx"), route("/api/bands", "routes/api-bands.tsx"), route("/api/artists", "routes/api-artists.tsx"), + route("/api/export", "routes/api-export.tsx"), + route("/api/import", "routes/api-import.tsx"), route("/bands/new", "routes/band-new.tsx"), route("/bands/of/:uuid", "routes/band-by-uuid.tsx"), route("/bands/named/:slug", "routes/band-by-slug.tsx"), -- cgit v1.2.3