import { Hype } from '@because/hype'
const app = new Hype
app.get('/', c => c.html(
Hi there!
))
// Test crash - remove after testing
setTimeout(() => {
console.log('About to crash...')
throw new Error('Test crash!')
}, 3000)
const apps = () => {
}
export default app.defaults