Simple HTTP routing library
import { app, Get, Hum, Resource } from "https://deno.land/x/[email protected]/mod.ts";
@Resource()
export class Hello {
@Get("/hello")
public async index() {
return {
hello: "world",
};
}
}
Hum({
port: 3000,
});