Skip to content

Instantly share code, notes, and snippets.

@zackshapiro
Created July 7, 2020 22:43
Show Gist options
  • Save zackshapiro/44435738d5b2de97eec45b1274cf8b1e to your computer and use it in GitHub Desktop.
Save zackshapiro/44435738d5b2de97eec45b1274cf8b1e to your computer and use it in GitHub Desktop.
struct CeloName {
var value: String {
#if DEBUG
return (DebugSettings().showCeloAssetName || FeatureFlags().showCeloNameEnabled) ? "CELO" : "cGLD"
#else
return FeatureFlags().showCeloNameEnabled ? "CELO" : "cGLD"
#endif
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment