mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-18 22:14:23 +01:00
Boilerplate Deno stuff
This commit is contained in:
7
src/app.ts
Normal file
7
src/app.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Hono } from '@/deps.ts';
|
||||
|
||||
const app = new Hono();
|
||||
|
||||
app.get('/', (c) => c.text('Hono!'));
|
||||
|
||||
export default app;
|
||||
Reference in New Issue
Block a user