Added swagger UI scripts

This commit is contained in:
Andrey Meshkov
2018-11-25 20:09:52 +03:00
committed by Eugene Bujak
parent 4623817894
commit 09702c724e
7 changed files with 474 additions and 27 deletions

8
openapi/index.js Normal file
View File

@@ -0,0 +1,8 @@
const express = require('express')
const app = express()
app.use(express.static(__dirname))
console.log('Open http://localhost:3000/ to examine the API spec')
app.listen(3000)