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