Created
November 26, 2019 11:00
-
-
Save albertodebortoli/967d7e4338d1ce42c853faa7e632b665 to your computer and use it in GitHub Desktop.
used by 'A Smart Feature Flagging System for iOS' article on Medium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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