mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
15 lines
182 B
Objective-C
15 lines
182 B
Objective-C
#import "SSignal+Concat.h"
|
|
|
|
#import "SAtomic.h"
|
|
|
|
@implementation SSignal (Concat)
|
|
|
|
- (SSignal *)concat:(SSignal *)another
|
|
{
|
|
NSAssert(false, @"123");
|
|
|
|
return nil;
|
|
}
|
|
|
|
@end
|