feat(api): wire all CRUD routes into Elysia server

This commit is contained in:
2026-04-25 18:31:26 +08:00
parent eebafa12b9
commit b6eb005c73
2 changed files with 57 additions and 5 deletions
+16
View File
@@ -0,0 +1,16 @@
export { healthRoutes } from "./health"
export { userRoutes } from "./user"
export { gamesRoutes, gameVersionsRoutes } from "./games"
export { hardwareRoutes } from "./hardware"
export { performanceRoutes, performanceVerifyRoutes } from "./performance"
export {
settingCategoriesRoutes,
settingDefinitionsRoutes,
settingsFullRoutes,
} from "./settings"
export {
presetsRoutes,
presetUpvoteRoutes,
presetSettingsRoutes,
} from "./presets"
export { commentsRoutes } from "./comments"