UNPKG
nf-workflow-ui-5
Version:
latest (2.10.0)
2.10.0
Workflow User Interface
github.com/Netflix/conductor
Netflix/conductor
nf-workflow-ui-5
/
src
/
api
/
middleware
/
index.js
13 lines
(10 loc)
•
225 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
PreMiddleware
from
'./pre'
;
import
PostMiddleware
from
'./post'
;
export
default
class
MiddlewareIndex
{
before
(
app
) {
new
PreMiddleware
().
init
(app); }
after
(
app
) {
new
PostMiddleware
().
init
(app); } }