mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
14 lines
342 B
Objective-C
14 lines
342 B
Objective-C
#import "TGBridgeChatListSignals.h"
|
|
|
|
#import <WatchCommonWatch/WatchCommonWatch.h>
|
|
|
|
#import "TGBridgeClient.h"
|
|
|
|
@implementation TGBridgeChatListSignals
|
|
|
|
+ (SSignal *)chatListWithLimit:(NSUInteger)limit;
|
|
{
|
|
return [[TGBridgeClient instance] requestSignalWithSubscription:[[TGBridgeChatListSubscription alloc] initWithLimit:limit]];
|
|
}
|
|
|
|
@end
|