17 lines
371 B
Objective-C
17 lines
371 B
Objective-C
//
|
|
// Api+Message.m
|
|
// xplan-ios
|
|
//
|
|
// Created by zu on 2021/12/8.
|
|
//
|
|
|
|
#import "Api+Message.h"
|
|
|
|
@implementation Api (Message)
|
|
|
|
+ (void)getChatLimit:(HttpRequestHelperCompletion)complection receiverUid:(NSString *)receiverUid {
|
|
[self makeRequest:@"privateChat/limit" method:HttpRequestHelperMethodGET completion:complection, __FUNCTION__, receiverUid,nil];
|
|
}
|
|
|
|
@end
|