mirror of
https://github.com/honojs/hono.git
synced 2024-11-22 19:44:26 +01:00
8 lines
142 B
JavaScript
8 lines
142 B
JavaScript
const Hono = require('../../src/hono')
|
|
const app = Hono()
|
|
|
|
app.get('/', () => 'Hono!!')
|
|
app.get('/hello', () => 'This is /hello')
|
|
|
|
app.fire()
|