Skip to content

Instantly share code, notes, and snippets.

@prostakm
Created November 16, 2017 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prostakm/3e0308f2548b6926802a1aad8e5af9a0 to your computer and use it in GitHub Desktop.
Save prostakm/3e0308f2548b6926802a1aad8e5af9a0 to your computer and use it in GitHub Desktop.
protocol DataGateway {
func getData() -> String
}
class StaticDataGateway: DataGateway {
func getData() -> String {
return "Important Data"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment