From 0b374e4aba72493f8f71f4759c34fedd07dbcfbd Mon Sep 17 00:00:00 2001 From: danieldagerom Date: Tue, 14 Sep 2021 10:51:28 -0300 Subject: [PATCH] (#8) Adiciona rotas mesa index --- src/routes/index.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/routes/index.ts b/src/routes/index.ts index 64855e1..7ae0795 100644 --- a/src/routes/index.ts +++ b/src/routes/index.ts @@ -1,5 +1,6 @@ import { Router } from "express"; import orderRoutes from'./order' +import tableRoutes from'./table' import employeeRoutes from './employee'; @@ -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;