UNPKG
egg-swagger-doc-fixbug
Version:
latest (2.3.3)
2.3.3
swagger for egg
github.com/best-fan/egg-swagger-doc-fix
best-fan/egg-swagger-doc-fix
egg-swagger-doc-fixbug
/
app.js
13 lines
(8 loc)
•
203 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
const
{ swaggerInit } =
require
(
'./lib/index'
);
module
.
exports
=
app
=>
{ app.
config
.
coreMiddleware
.
unshift
(
'request'
); app.
beforeStart
(
async
() => {
swaggerInit
(app); }); };