CNLiveIntegralModule.m 827 Bytes
//
//  CNLiveIntegralModule.m
//  CNLiveIntegralModule
//
//  Created by 153993236@qq.com on 11/12/2019.
//  Copyright (c) 2019 153993236@qq.com. All rights reserved.
//

#import "CNLiveIntegralModule.h"
#import "CNLiveServices.h"

@BeeHiveMod(CNLiveIntegralModule)
@interface CNLiveIntegralModule()<BHModuleProtocol>

@end

@implementation CNLiveIntegralModule
- (id)init {
    if (self = [super init]) {
        
    }
    return self;
    
}

- (NSUInteger)moduleLevel {
    return 0;
    
}

- (void)modSetUp:(BHContext *)context {
    switch (context.env) {
        case BHEnvironmentDev:
            //....初始化开发环境
            break;
        case BHEnvironmentProd:
            //....初始化生产环境
        default:
            break;
    }
    
}

- (void)modInit:(BHContext *)context {
    
}

@end