Skip to content

Commit

Permalink
style: prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tokebe committed Oct 20, 2023
1 parent e0d7b07 commit 4289a45
Show file tree
Hide file tree
Showing 77 changed files with 1,115 additions and 11,020 deletions.
15 changes: 7 additions & 8 deletions src/app.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
const express = require('express');
const express = require("express");
const Config = require("./config/index");
const { routes } = require("./routes/index");


class App {
constructor() {
this.app = express();
this.config = new Config(this.app);
this.app = this.config.setConfig();
routes.setRoutes(this.app);
}
constructor() {
this.app = express();
this.config = new Config(this.app);
this.app = this.config.setConfig();
routes.setRoutes(this.app);
}
}

module.exports = new App().app;
Loading

0 comments on commit 4289a45

Please sign in to comment.