2025-07-28 14:26:19 +08:00

28 lines
444 B
TypeScript

/**
* @Author: Gongxh
* @Date: 2024-12-28
* @Description:
*/
export interface INetResponse {
responseStatus: number;
packet: any;
}
export interface IServerInfo {
/** 名称 */
name: string,
/** http地址 */
url: string,
/** 应用id */
appid: string,
/** 密钥 */
secret: string,
}
export const ServerConfig: IServerInfo = {
name: "dev-gblnn",
url: "",
appid: "",
secret: "",
}