CNIDCardAuthenticationServices.m 690 Bytes
//
//  CNIDCardAuthenticationServices.m
//  CNLiveBPersonalVerificationModule
//
//  Created by cnliveJunBo on 2020/4/22.
//

#import "CNIDCardAuthenticationServices.h"
#import <CNLiveBeeHive/BeeHive.h>
#import "ApplyForShootController.h"
#import "CNIDCardAuthenticationServices.h"

@interface CNIDCardAuthenticationServices ()<CNLiveIDCardAuthenProtocol>

@end

@BeeHiveService(CNLiveIDCardAuthenProtocol,CNIDCardAuthenticationServices)
@implementation CNIDCardAuthenticationServices

#pragma mark - 跳到资料认证页面
- (UIViewController *)pushToCNLiveIDCardAuthController {
    ApplyForShootController *applyVc = [[ApplyForShootController alloc] init];
    return applyVc;
}

@end