This commit is contained in:
编码猿
2025-08-29 22:03:56 +08:00
parent 5ddcc17391
commit 0df7fa4d45
21 changed files with 83 additions and 376 deletions

6
gateway/server.js Normal file
View File

@@ -0,0 +1,6 @@
const path = require('path');
const gateway = require('express-gateway');
gateway()
.load(path.join(__dirname, 'config'))
.run();