feat(chat-room): 채팅방에 필요한 기본적인 파일 추가

This commit is contained in:
Yu Sung
2025-09-03 17:37:23 +09:00
parent 6b445fff7c
commit a42edbe99c
9 changed files with 119 additions and 2 deletions

View File

@@ -16,6 +16,7 @@ final class ChatRoomViewModel: ObservableObject {
@Published var isShowPopup = false
// MARK: - Private
private let userRepository = UserRepository()
private let repository = ChatRoomRepository()
private var subscription = Set<AnyCancellable>()
}