mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-05-25 12:54:03 +02:00
15 lines
358 B
Objective-C
15 lines
358 B
Objective-C
#import "TGBridgeConversationSignals.h"
|
|
|
|
#import <WatchCommonWatch/WatchCommonWatch.h>
|
|
|
|
#import "TGBridgeClient.h"
|
|
|
|
@implementation TGBridgeConversationSignals
|
|
|
|
+ (SSignal *)conversationWithPeerId:(int64_t)peerId
|
|
{
|
|
return [[TGBridgeClient instance] requestSignalWithSubscription:[[TGBridgeConversationSubscription alloc] initWithPeerId:peerId]];
|
|
}
|
|
|
|
@end
|