import { App } from './src/app' import { UserController } from './src/controller/UserController' const app = new App({ port: 5000, controllers: [ new UserController() ] }) app.listen()