mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
342 B
Objective-C
15 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
|