Current section

Files

Jump to
finitomata lib finitomata supervision application.ex
Raw

lib/finitomata/supervision/application.ex

defmodule Finitomata.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [Finitomata.child_spec()]
Supervisor.start_link(children, strategy: :one_for_one)
end
end