CNIDCardAuthenticationServices.m
746 Bytes
//
// CNIDCardAuthenticationServices.m
// CNLiveBPersonalVerificationModule
//
// Created by cnliveJunBo on 2020/4/22.
//
#import "CNIDCardAuthenticationServices.h"
#import "ApplyForShootController.h"
#import "CNIDCardAuthenticationServices.h"
#import <CNLiveBServices/CNLiveIDCardAuthenProtocol.h>
#import <CNLiveBeeHive/BeeHive.h>
@interface CNIDCardAuthenticationServices ()<CNLiveIDCardAuthenProtocol>
@end
@BeeHiveService(CNLiveIDCardAuthenProtocol,CNIDCardAuthenticationServices)
@implementation CNIDCardAuthenticationServices
#pragma mark - 跳到资料认证页面
- (UIViewController *)pushToCNLiveIDCardAuthController {
ApplyForShootController *applyVc = [[ApplyForShootController alloc] init];
return applyVc;
}
@end