This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/iOS/Pod/Classes/DoricContextHolder.m

20 lines
314 B
Mathematica
Raw Normal View History

2019-07-29 13:48:27 +08:00
//
// DoricComponent.m
// Doric
//
// Created by pengfei.zhou on 2019/7/29.
//
2019-07-30 15:20:11 +08:00
#import "DoricContextHolder.h"
2019-07-29 13:48:27 +08:00
2019-07-30 15:20:11 +08:00
@implementation DoricContextHolder
2019-07-29 13:48:27 +08:00
2019-07-29 14:51:35 +08:00
- (instancetype)initWithContext:(DoricContext *)doricContext {
2019-10-12 14:48:19 +08:00
if (self = [super init]) {
2019-07-29 14:51:35 +08:00
_doricContext = doricContext;
}
return self;
}
2019-07-29 13:48:27 +08:00
@end