mirror of
https://github.com/LLM-Red-Team/kimi-free-api.git
synced 2025-05-04 02:28:53 +08:00
14 lines
274 B
TypeScript
14 lines
274 B
TypeScript
import serviceConfig from "./configs/service-config.ts";
|
|
import systemConfig from "./configs/system-config.ts";
|
|
|
|
class Config {
|
|
|
|
/** 服务配置 */
|
|
service = serviceConfig;
|
|
|
|
/** 系统配置 */
|
|
system = systemConfig;
|
|
|
|
}
|
|
|
|
export default new Config(); |