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/OpenFeature/application.ex
defmodule OpenFeature.Application do
@moduledoc """
The top-level application for OpenFeature.
"""
use Application
def start(_type, _args) do
OpenFeature.Supervisor.start_link(nil)
end
end