Created
November 26, 2019 11:00
-
-
Save albertodebortoli/de81d5bfa37618776218e48e417ef44d 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
import JustTweak | |
public class AppConfiguration: ModuleASettings, ModuleBSettings { | |
static let tweakManager: TweakManager = { | |
... | |
} | |
@TweakProperty(...) | |
var isFeatureXEnabled: Bool | |
@TweakProperty(...) | |
var publicApiHost: String | |
@OptionalTweakProperty(...) | |
var publicApiPort: Int? | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment