lynx-framework
Version:
lynx is a NodeJS framework for Web Development, based on decorators and the async/await support.
33 lines (27 loc) • 542 B
text/typescript
import BaseModule from './base.module';
export default class SimpleModule extends BaseModule {
get controllers(): string {
return '';
}
get middlewares(): string {
return '';
}
get translation(): string {
return '';
}
get views(): string {
return '';
}
get public(): string {
return '';
}
get entities(): string {
return '';
}
get migrations(): string {
return '';
}
get templating(): string {
return '';
}
}