This commit is contained in:
2025-03-04 11:41:36 +08:00
parent e7cbc71418
commit fbc2d19b70
6 changed files with 104 additions and 4 deletions

View File

@@ -53,6 +53,13 @@ export class Account {
const res = await http.get("/account/profile")
return res.data
}
static async list(query: { username: string }) {
const res = await http.get("/account/list", {
params: query,
})
return res.data
}
}
export class Tutorial {