8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import { Services } from '@morten-olsen/box-utils/services';
|
|
|
|
import { BootstrapService } from './bootstrap.js';
|
|
|
|
const services = new Services();
|
|
const bootstrap = services.get(BootstrapService);
|
|
await bootstrap.ensure();
|