Skip to content

Commit

Permalink
🔧 :: permissionComponent shared 구문 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
KangTaeHoon committed Nov 16, 2023
1 parent 94e74d2 commit a4806b3
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 113 deletions.
8 changes: 2 additions & 6 deletions Projects/App/Sources/Application/AppComponent.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,11 @@ public final class AppComponent: BootstrapComponent {
}
}


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


}

// MARK: - Tabbar
Expand Down Expand Up @@ -60,13 +57,12 @@ public extension AppComponent {
var openSourceLicenseComponent: OpenSourceLicenseComponent {
OpenSourceLicenseComponent(parent: self)
}

var serviceInfoComponent: ServiceInfoComponent {
ServiceInfoComponent(parent: self)
}

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

0 comments on commit a4806b3

Please sign in to comment.