Created
July 7, 2020 22:43
-
-
Save zackshapiro/44435738d5b2de97eec45b1274cf8b1e to your computer and use it in GitHub Desktop.
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 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