UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

10 lines (7 loc) 163 B
import { Scope } from './Scope'; export class App extends Scope { constructor(name: string) { super(name); } static readonly Main = new App('Main'); }