You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
320 B

// Create the dependency injector instance for the application
const DI = require('./DependencyInjector')
const di = new DI()
// Now, create the instance of our application using the DI to inject services
const App = di.make(require('./App'))
const app = new App() // Has access to the emailLogging service
app.run();