#!/usr/bin/env -S node --experimental-repl-await import {cli} from './bootstrap' (async () => { /* * The Application * ----------------------------------------------------- * The application instance is a global inversion of control container that * ties your entire application together. The app container manages services * and lifecycle. */ const app = cli() await app.run() })()