Files
light-code/server/src/routes/auth.ts
2025-10-18 03:43:58 +08:00

8 lines
146 B
TypeScript

import { app } from '../app.ts'
app.route({
path: 'auth',
id: 'auth'
}).define(async (ctx) => {
// Authentication logic here
}).addTo(app);