deno.land / x / alosaur@v1.1.1 / examples / basic / areas / info / info.controller.ts
1234567891011121314151617import { Controller, Get } from "alosaur/mod.ts";import { delay } from "../../../_utils/test.utils.ts";
@Controller("/info")export class InfoController { @Get(/^\/?$/) text() { return `Hello info`; }
@Get("/time") async time() { await delay(500); return `Hello info2`; }}
Version Info