9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
import { Hype } from '@because/hype'
|
|
|
|
const app = new Hype()
|
|
|
|
app.get('/', c => c.text('$$APP_NAME$$'))
|
|
app.get('/ok', c => c.text('ok'))
|
|
|
|
export default app.defaults
|