import { Hono } from 'hono';
//import { prettyJSON } from 'hono/pretty-json';
const app = new Hono();
app.get('/health', (c) => {
return c.json({ status: 'ok' });
});
export type AppType = typeof app;
//app.use(prettyJSON());
//app.use(logger());
export default app;
import { Hono } from 'hono';
//import { prettyJSON } from 'hono/pretty-json';
const app = new Hono();
app.get('/health', (c) => {
return c.json({ status: 'ok' });
});
export type AppType = typeof app;
//app.use(prettyJSON());
//app.use(logger());
export default app;