A feature flagging and experimentation library for erlang
$ rebar3 compile
$ rebar3 shell --apps statsig
application:set_env(statsig, statsig_api_key, ApiKey),
application:start(statsig),
statsig:check_gate(User, GateName),
statsig:log_event(#{<<"userID">> => <<"321">>}, <<"custom_event">>, 12, #{<<"test">> => <<"val">>}),
statsig:flush(Pid).