Skip to content

Commit

Permalink
(#8) Adiciona rotas mesa index
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldagerom committed Sep 14, 2021
1 parent 4153ba4 commit 0b374e4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/routes/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Router } from "express";
import orderRoutes from'./order'
import tableRoutes from'./table'

import employeeRoutes from './employee';

Expand All @@ -23,10 +24,8 @@ routes.get("/", (request, response) => {
});
});

<<<<<<< HEAD
routes.use('/orders', orderRoutes)
=======
routes.use('/employee', employeeRoutes);
>>>>>>> 6ba0470336749c81e5fe6a7ff860c4d78d846cd5
routes.use('/table', tableRoutes);

export default routes;

0 comments on commit 0b374e4

Please sign in to comment.