UNPKG

zents-cli

Version:

ZenTS is a Node.js & TypeScript MVC-Framework for building rich web applications, released as free and open-source software under the MIT License. It is designed for building web applications with modern tools and design patterns.

11 lines (9 loc) 172 B
import { Controller, get } from 'zents' export default class extends Controller { @get('/example') public async example() { return { foo: 'bar', } } }