first commit

This commit is contained in:
编码猿
2024-09-27 01:14:21 +08:00
commit 5ddcc17391
52 changed files with 1176 additions and 0 deletions

15
gateway/server.ts Normal file
View File

@@ -0,0 +1,15 @@
const path = require('path');
import { join } from "path";
import gateway from "express-gateway";
// const gateway = require('express-gateway');
class run {
constructor () {
//@ts-ignore
gateway()
.load(join(__dirname, 'config'))
.run();
}
}
new run()