Skip to content

Commit

Permalink
✨ :: [#130] InputDialogFeature / InputDialogFeature DI
Browse files Browse the repository at this point in the history
  • Loading branch information
baekteun committed Jul 30, 2023
1 parent ff314a5 commit fe4564e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Projects/App/Sources/Application/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import ConfirmationDialogFeature
import Database
import HomeFeature
import IQKeyboardManagerSwift
import InputDialogFeature
import JwtStore
import KeyValueStore
import MainTabFeature
Expand Down Expand Up @@ -46,6 +47,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
DatabaseAssembly(),
SplashAssembly(),
HomeAssembly(),
InputDialogAssembly(),
MyViolationListAssembly(),
NoticeAssembly(),
SelfStudyAssembly(),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import InputDialogFeatureInterface
import Swinject

public final class InputDialogAssembly: Assembly {
public init() {}
public func assemble(container: Container) {
container.register(InputDialogFactory.self) { resolver in
InputDialogFactoryImpl()
}
}
}

0 comments on commit fe4564e

Please sign in to comment.