Packages
openfeature_elixir
0.1.0
OpenFeature is an open specification that provides a vendor-agnostic, community-driven API for feature flagging that works with your favorite feature flag management tool.
Current section
Files
Jump to
Current section
Files
lib/providers/no_op_provider.ex
defmodule OpenFeature.Providers.NoOpProvider do
def init(_) do
IO.puts("NoOpProvider init")
:ok
end
def terminate() do
IO.puts("NoOpProvider terminate")
:ok
end
end