Files
yinmeng-ios/xplan-ios/Main/RTC/BaseRtcImpl.m

18 lines
259 B
Objective-C

//
// RTCBaseImpl.m
// xplan-ios
//
// Created by zu on 2021/10/19.
//
#import "BaseRtcImpl.h"
@implementation BaseRtcImpl
- (void)joinChannel:(NSString *)channelId broadcast:(BOOL)on {
[self joinChannel:channelId];
[self broadcast:on];
}
@end