CNLiveIntegralModule.m
827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// 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