2021-12-08 18:53:19 +08:00
|
|
|
//
|
|
|
|
// Api+Message.m
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by zu on 2021/12/8.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "Api+Message.h"
|
|
|
|
|
|
|
|
@implementation Api (Message)
|
|
|
|
|
2022-01-24 14:22:40 +08:00
|
|
|
+ (void)getChatLimit:(HttpRequestHelperCompletion)complection receiverUid:(NSString *)receiverUid {
|
|
|
|
[self makeRequest:@"privateChat/limit" method:HttpRequestHelperMethodGET completion:complection, __FUNCTION__, receiverUid,nil];
|
2021-12-08 18:53:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|