login / register ui

This commit is contained in:
biglyderv 2025-02-25 16:35:22 -05:00
parent ae511a3871
commit d1d2d08330
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
5 changed files with 158 additions and 7 deletions

8
lib.js Normal file
View file

@ -0,0 +1,8 @@
async function importRouters(app, routers) {
for (let router in routers) {
console.log(router)
await app.use(router, (await import(routers[router])).default)
}
}
export { importRouters };