@node-boot/starter
v1.0.6
Published
```typescript import {NodeBootApplication, Autowired, ApplicationRunner, Component} from '@node-boot/starter';
Downloads
3
Readme
@node-boot/starter
import {NodeBootApplication, Autowired, ApplicationRunner, Component} from '@node-boot/starter';
@Component()
class Test0 {
}
@NodeBootApplication()
class Test implements ApplicationRunner {
constructor(public test0: Test0) {
}
run(): void {
console.log(this.test0);
}
}