25 lines
595 B
Objective-C
25 lines
595 B
Objective-C
|
|
// Created by Tencent on 2023/06/09.
|
|
// Copyright © 2023 Tencent. All rights reserved.
|
|
|
|
#import "TUIConversationService.h"
|
|
|
|
@implementation TUIConversationService
|
|
|
|
static NSString *gServiceName = nil;
|
|
|
|
+ (void)load {
|
|
TUIRegisterThemeResourcePath(TUIConversationThemePath, TUIThemeModuleConversation);
|
|
}
|
|
|
|
+ (TUIConversationService *)shareInstance {
|
|
static dispatch_once_t onceToken;
|
|
static TUIConversationService *g_sharedInstance = nil;
|
|
dispatch_once(&onceToken, ^{
|
|
g_sharedInstance = [[TUIConversationService alloc] init];
|
|
});
|
|
return g_sharedInstance;
|
|
}
|
|
|
|
@end
|