2025-03-10 10:21:14 +08:00

11 lines
140 B
TypeScript

import { app } from '@/app.ts';
app
.route({
path: 'check',
})
.define(async (ctx) => {
ctx.body = 'ok';
})
.addTo(app);