Skip to main content
Module

x/fastro/services/hello.controller.ts

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