12345678910111213141516171819202122 |
- //
- // RQHTTPService+RQPostDeletion.h
- // SDJK
- //
- // Created by 张嵘 on 2022/6/29.
- //
- #import "RQHTTPService.h"
- #define RQ_POST_Deletion @"login/app/deletion"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHTTPService (RQPostDeletion)
- /**
- 注销账号
- @return Returns a signal which will send complete, or error.
- */
- - (RACSignal *)postDeletion;
- @end
- NS_ASSUME_NONNULL_END
|