mirror of
https://github.com/sasjs/server.git
synced 2026-01-09 07:20:05 +00:00
feat(routes): separate routes into web and api
This commit is contained in:
8
src/routes/web/index.ts
Normal file
8
src/routes/web/index.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import express from 'express'
|
||||
import webRouter from './web'
|
||||
|
||||
const router = express.Router()
|
||||
|
||||
router.use('/web', webRouter)
|
||||
|
||||
export default router
|
||||
Reference in New Issue
Block a user