This commit is contained in:
zhutao
2025-08-29 14:23:55 +08:00
parent 6a9c801bd2
commit 0af8d30cae
5 changed files with 217 additions and 3 deletions

View File

@@ -48,3 +48,8 @@ Future<LoginDto> thirdLoginApi(String token, OtherLoginType type) async {
});
return LoginDto.fromJson(res);
}
///删除账号
Future<void> deleteAccountApi() async {
return Request().get("/delete_account");
}