Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save albertodebortoli/de81d5bfa37618776218e48e417ef44d to your computer and use it in GitHub Desktop.
Save albertodebortoli/de81d5bfa37618776218e48e417ef44d to your computer and use it in GitHub Desktop.
used by 'A Smart Feature Flagging System for iOS' article on Medium
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