import { Application } from "https://deno.land/x/abc/mod.ts";
const app = new Application();
console.log("http://localhost:8080/");
app
.get("/hello", (c) => {
return "Hello, Abc!";
})
.post("/add",async(c)=>{
let {name} = await c.body
console.log(c.body)
return "namanya = " + name
})
.start({ port: 8080 });
how to deploy this code to deno deploy