Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Controller

import { Controller } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mod.ts";

Decorator

Defines that a class is a controller. When a class is a controller, it is meant to resolve http handlers & all the internals related to mandarine HTTP server

@Controller(baseRoute) Target: Class

const Controller: (baseRoute?: string) => Function;