roooooms 2

This commit is contained in:
2025-09-06 22:22:36 -04:00
parent 03b751dda6
commit 2aa5352350
15 changed files with 473 additions and 1004 deletions

View File

@@ -44,10 +44,10 @@ export async function importer<T>(importKey: string, prefix: string, paths: stri
return items;
}
export function createHonoRoute(path: string): RouteImport {
export function createHonoRoute(path: string) {
const route: RouteImport = {
path,
app: new Hono<HonoEnv>()
}
return route
return route;
}