ditto/src/app.ts

8 lines
119 B
TypeScript
Raw Normal View History

2023-03-05 01:55:28 +00:00
import { Hono } from '@/deps.ts';
const app = new Hono();
app.get('/', (c) => c.text('Hono!'));
export default app;