ffreemt
Update from redteam repo
f25d8c5
raw
history blame contribute delete
274 Bytes
import serviceConfig from "./configs/service-config.ts";
import systemConfig from "./configs/system-config.ts";
class Config {
/** 服务配置 */
service = serviceConfig;
/** 系统配置 */
system = systemConfig;
}
export default new Config();