Current section

Files

Jump to
gen_state_machine lib gen_state_machine application.ex
Raw

lib/gen_state_machine/application.ex

defmodule GenStateMachine.Application do
@moduledoc false
use Application
@doc false
def start(_type, _args) do
Logger.add_translator({GenStateMachine.Translator, :translate})
Supervisor.start_link([], strategy: :one_for_one)
end
end