mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-24 12:10:49 +00:00
15 lines
378 B
Objective-C
15 lines
378 B
Objective-C
#import "TGBridgeChatListSignals.h"
|
|
#import "TGBridgeSubscriptions.h"
|
|
#import "TGBridgeChat.h"
|
|
#import "TGBridgeUser.h"
|
|
#import "TGBridgeClient.h"
|
|
|
|
@implementation TGBridgeChatListSignals
|
|
|
|
+ (SSignal *)chatListWithLimit:(NSUInteger)limit;
|
|
{
|
|
return [[TGBridgeClient instance] requestSignalWithSubscription:[[TGBridgeChatListSubscription alloc] initWithLimit:limit]];
|
|
}
|
|
|
|
@end
|