Skip to content

Instantly share code, notes, and snippets.

@cgoldsby
Created May 3, 2016 11:09
Show Gist options
  • Save cgoldsby/d74ad79e03e2bdc22ffa745590c643a0 to your computer and use it in GitHub Desktop.
Save cgoldsby/d74ad79e03e2bdc22ffa745590c643a0 to your computer and use it in GitHub Desktop.
enum EnumServiceLocator: ServiceLocatorProtocol {
case sharedInstance
func provideService() -> Service {
return Service()
}
}
EnumServiceLocator.sharedInstance.provideService()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment