Skip to content

Instantly share code, notes, and snippets.

@Kalvin126
Last active May 23, 2019 20:29
Show Gist options
  • Save Kalvin126/814dd2551a2c43d6ed40a3dc0b0630b0 to your computer and use it in GitHub Desktop.
Save Kalvin126/814dd2551a2c43d6ed40a3dc0b0630b0 to your computer and use it in GitHub Desktop.
protocol Features { }
protocol Account {
var features: Features { get set }
}
class ProFeatures: Features {
}
class ProAccount {
var proFeatures: ProFeatures
init(features: ProFeatures) {
self.proFeatures = features
}
}
// MARK: - Account
extension ProAccount: Account {
var features: Features { return proFeatures }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment