Last active
December 18, 2015 14:11
-
-
Save cstar/e205a17cbc049e96a11d to your computer and use it in GitHub Desktop.
feature toggle
This file contains 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
-mod(feature). | |
-export([feature/3]). | |
-spec feature(atom(), fun(), fun()) -> any(). | |
feature(Name, TrueFun, FalseFun)-> | |
case application:get_env(?APPLICATION,toggles, []) of | |
List -> | |
case lists:member(Name,List) of | |
true -> | |
TrueFun(); | |
false -> | |
FalseFun() | |
end | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment