完成deno后端测试用的接口

This commit is contained in:
编码猿
2025-09-16 23:40:58 +08:00
parent c156637f03
commit 61c84b0842
12 changed files with 1576 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
export default class HttpConfig {
public static DevBaseUrl: string = "http://127.0.0.1:8080"
public static prodBaseUrl: string = "http://127.0.0.1:9090/api"
public static DevBaseUrl: string = "http://127.0.0.1:3000/api"
public static prodBaseUrl: string = "http://127.0.0.1:9090/api/"
public static apiList: string = ""
}