1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 11:24:35 +00:00

fix(routes): fix routes imports

This commit is contained in:
Yury Shkoda
2021-10-28 08:43:28 +00:00
parent dabef59728
commit 49c152a398

View File

@@ -1,6 +1,6 @@
import express from 'express'
import webRouter from './routes/web/web'
import apiRouter from './routes/api/'
import webRouter from './routes/web'
import apiRouter from './routes/api'
const app = express()