express-nodejs-app/src/server.ts
Sambo Chea 03458fe00c
Some checks failed
continuous-integration/drone/push Build is failing
Add express server from module and updated the server and config
2021-09-16 18:14:49 +07:00

10 lines
249 B
TypeScript

import Application from "@cubetiq/express-server/dist"
import { controllers as AllControllers } from "./controller"
class Server extends Application {
get controllers(): any[] {
return AllControllers
}
}
export default new Server()