14 lines
244 B
Swift
14 lines
244 B
Swift
//
|
|
// FloatchatResolverRegister.swift
|
|
// TUIRoomKit
|
|
//
|
|
// Created by CY zhao on 2024/5/16.
|
|
//
|
|
import Factory
|
|
|
|
extension Container {
|
|
var floatChatService: Factory<FloatChatStoreProvider> {
|
|
self { FloatChatStore() }.shared
|
|
}
|
|
}
|