mirror of
https://github.com/vastxie/99AI.git
synced 2025-09-19 01:56:38 +08:00
12 lines
363 B
JavaScript
12 lines
363 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const Dotenv = require("dotenv");
|
|
Dotenv.config({ path: '.env' });
|
|
const config = {
|
|
SecretId: process.env.TENTCENT_SECRET_ID,
|
|
SecretKey: process.env.TENTCENT_SECRET_KEY,
|
|
Bucket: process.env.COS_BUCKET_PUBLIC,
|
|
Region: process.env.COS_REGION,
|
|
};
|
|
exports.default = config;
|