mirror of
https://github.com/opa334/TrollStore.git
synced 2025-07-06 16:28:45 +08:00
12 lines
286 B
Objective-C
12 lines
286 B
Objective-C
#import "TSModuleManager.h"
|
|
|
|
@interface TSModuleManager ()
|
|
@property (nonatomic, strong) NSMutableDictionary<NSNumber *, id<TSModuleProtocol>> *modules;
|
|
@end
|
|
|
|
@implementation TSModuleManager
|
|
|
|
// 实现共享实例、注册、执行等方法(完整实现参考之前的代码)
|
|
|
|
@end
|