Packages

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
openfeature_elixir lib OpenFeature application.ex
Raw

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