7 lines
135 B
JavaScript
7 lines
135 B
JavaScript
const path = require('path');
|
|
const gateway = require('express-gateway');
|
|
|
|
gateway()
|
|
.load(path.join(__dirname, 'config'))
|
|
.run();
|