Created
January 22, 2022 22:53
-
-
Save malcommac/cf8e182a11f31ca43f73abec2b50ea13 to your computer and use it in GitHub Desktop.
UserExperiments_6.swift
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
struct UserExperiments: FlagCollectionProtocol { | |
@FlagCollection(description: "A nested collection") | |
var secrets: SecretsExperiments | |
@Flag(key: "sson", default: false, description: "Enable Single-Sign-On") | |
var allowsSSON: Bool | |
} | |
struct SecretsExperiments: FlagCollectionProtocol { | |
@Flag(default: false, description: "Risky feature!") | |
var boomFeature: Bool | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment