generated from tailored/router-template
11 lines
140 B
TypeScript
11 lines
140 B
TypeScript
import { app } from '@/app.ts';
|
|
|
|
app
|
|
.route({
|
|
path: 'check',
|
|
})
|
|
.define(async (ctx) => {
|
|
ctx.body = 'ok';
|
|
})
|
|
.addTo(app);
|