Skip to content

Instantly share code, notes, and snippets.

@cgoldsby
Created May 3, 2016 11:07
Show Gist options
  • Save cgoldsby/8e2cbb70b56859800a0c8f1d6e29438e to your computer and use it in GitHub Desktop.
Save cgoldsby/8e2cbb70b56859800a0c8f1d6e29438e to your computer and use it in GitHub Desktop.
struct StructServiceLocator: ServiceLocatorProtocol {
static var sharedInstance = StructServiceLocator()
private init() { }
func provideService() -> Service {
return Service()
}
}
StructServiceLocator.sharedInstance.provideService()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment