RQHTTPService+RQPostDeletion.h 390 B

12345678910111213141516171819202122
  1. //
  2. // RQHTTPService+RQPostDeletion.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/6/29.
  6. //
  7. #import "RQHTTPService.h"
  8. #define RQ_POST_Deletion @"login/app/deletion"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQHTTPService (RQPostDeletion)
  11. /**
  12. 注销账号
  13. @return Returns a signal which will send complete, or error.
  14. */
  15. - (RACSignal *)postDeletion;
  16. @end
  17. NS_ASSUME_NONNULL_END