1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-11 00:10:06 +00:00

Merge branch 'master' into homepage-sasjs-executor

Conflicts:
	api/src/app.ts
	api/src/routes/index.ts
	api/src/routes/spec/routes.spec.ts
This commit is contained in:
2021-11-01 13:12:52 +00:00
11 changed files with 336 additions and 285 deletions

View File

@@ -0,0 +1,8 @@
import express from 'express'
import webRouter from './web'
const router = express.Router()
router.use('/', webRouter)
export default router