From 2056e6b1b338c35f86c445300184495ceb547212 Mon Sep 17 00:00:00 2001 From: shwaaaa Date: Wed, 3 Apr 2024 08:47:48 +0900 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20::=20[#198]=20ReactorAssembly=20/?= =?UTF-8?q?=20ClubAttendReactor=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- iOS/Sources/Application/DI/Assembly/ReactorAssembly.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/iOS/Sources/Application/DI/Assembly/ReactorAssembly.swift b/iOS/Sources/Application/DI/Assembly/ReactorAssembly.swift index 365b941e..8cb5e942 100644 --- a/iOS/Sources/Application/DI/Assembly/ReactorAssembly.swift +++ b/iOS/Sources/Application/DI/Assembly/ReactorAssembly.swift @@ -52,5 +52,9 @@ final class ReactorAssembly: Assembly { clubCloseUseCase: r.resolve(ClubCloseUseCase.self)! ) } + + container.register(ClubAttendReactor.self) { _ in + ClubAttendReactor() + } } }