// // RQTimeModule.m // jiaPei // // Created by 张嵘 on 2021/11/19. // Copyright © 2021 JCZ. All rights reserved. // #import "RQTimeModule.h" static RQTimeModule *manger = nil; static dispatch_once_t onceToken; @interface RQTimeModule () @end @implementation RQTimeModule #pragma mark - SystemMethod + (RQTimeModule *)sharedManager { dispatch_once(&onceToken, ^{ manger = [[self alloc] init]; }); return manger; } - (instancetype)init { self = [super init]; if (self) { } return self; } - (void)dealloc { } #pragma mark - PublicMethod @end