Skip to content

Commit

Permalink
Reorder routes
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandiny committed Feb 25, 2021
1 parent 58ea00e commit 9476a2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ createConnection().then(async connection => {
app.use(express.json());
app.use(morgan("tiny"));
app.use(cors());
app.use(tenantRoutes());
app.use(userRoutes());
app.use(scoreboardRoutes());
app.use(transactionRoutes());
app.use(inventoryRoutes());
app.use(tenantRoutes());
app.use(gameRoutes());
app.use(inventoryRoutes());
app.use(transactionRoutes());
app.use(checkoutRoutes());

const server = http.createServer(app);
Expand Down

0 comments on commit 9476a2f

Please sign in to comment.