File
import { MeeKeeBee } from "./mods.ts"
const app = new MeeKeeBee();
app.setErrorHandler(404, (req) => { req.respond({ body: "not found" })})
app.handle("/", 'GET', (req) => { req.respond({ body: "hey bud" })})
await app.listen(8000)