Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save albertodebortoli/967d7e4338d1ce42c853faa7e632b665 to your computer and use it in GitHub Desktop.
Save albertodebortoli/967d7e4338d1ce42c853faa7e632b665 to your computer and use it in GitHub Desktop.
used by 'A Smart Feature Flagging System for iOS' article on Medium
protocol ModuleASettings {
var isFeatureXEnabled: Bool { get }
}
protocol ModuleBSettings {
var publicApiHost: String { get }
var publicApiPort: Int? { get }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment