Skip to main content
Module

x/fastro/module/hello.controller.ts

Fast and simple web application framework for deno
Go to Latest
File
import type { Request } from "../mod.ts";
export default (request: Request) => { request .status(200) .type("text/html") .send("setup complete");};