Skip to main content
Module

x/alosaur/examples/di/app.ts

Alosaur - Deno web framework with many decorators
Go to Latest
File
import { HomeArea } from "./areas/home/home.area.ts";import { App } from "alosaur/mod.ts";
const app = new App({ areas: [HomeArea], logging: false,});
app.listen();