NineAI 2.4.2

This commit is contained in:
vastxie
2024-01-17 09:22:28 +08:00
commit bdc48207fc
636 changed files with 41864 additions and 0 deletions

9
dist/config/main.js vendored Normal file
View File

@@ -0,0 +1,9 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.APIPREFIX = exports.SWAGGERPREFIX = exports.PORT = void 0;
const PORT = process.env.PORT || 3000;
exports.PORT = PORT;
const SWAGGERPREFIX = process.env.SWAGGERPREFIX || '/docs';
exports.SWAGGERPREFIX = SWAGGERPREFIX;
const APIPREFIX = process.env.APIPREFIX || '/api';
exports.APIPREFIX = APIPREFIX;