View Controller Dependency Injection App Environment
class AppEnviroment: NSObject { | |
static let sharedEnvironment = AppEnviroment() | |
let dependableService:DependableService | |
override init() { | |
self.dependableService = DependableService() | |
super.init() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment