Skip to main content
Module

x/alosaur/examples/default/app.ts

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