mirror of
https://github.com/vastxie/99AI.git
synced 2025-09-17 17:26:38 +08:00
10 lines
385 B
JavaScript
10 lines
385 B
JavaScript
"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;
|