Skip to content

Commit

Permalink
🐛 :: 퍼미션 컴포넌트 위치 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
yongbeomkwak committed Nov 16, 2023
1 parent b15d406 commit efdb978
Show file tree
Hide file tree
Showing 2 changed files with 117 additions and 111 deletions.
15 changes: 10 additions & 5 deletions Projects/App/Sources/Application/AppComponent.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,21 @@ public final class AppComponent: BootstrapComponent {
public func makeRootView() -> IntroViewController {
rootComponent.makeView()
}

public var keychain: any Keychain {
shared {
KeychainImpl()
}
}


var rootComponent: RootComponent {
shared {
RootComponent(parent: self)
}
}

var permissionComponent: PermissionComponent {
shared {
PermissionComponent(parent: self)
}
}

}

// MARK: - Tabbar
Expand Down Expand Up @@ -64,4 +63,10 @@ public extension AppComponent {
var serviceInfoComponent: ServiceInfoComponent {
ServiceInfoComponent(parent: self)
}

var permissionComponent: PermissionComponent {
shared {
PermissionComponent(parent: self)
}
}
}
Loading

0 comments on commit efdb978

Please sign in to comment.