This commit is contained in:
Putoo
2026-07-16 17:52:33 +08:00
parent 2cd2ed02f8
commit 00c2758df2
43 changed files with 897 additions and 72 deletions

View File

@@ -0,0 +1,9 @@
export class CdkService {
/**
* 兑换CDK
* GET /Cdk/Exchange
*/
static async Exchange(cdk: string) {
return await ApiService.Request("get", "/Cdk/Exchange", { cdk });
}
}