Current section

Files

Jump to
hedgex lib hedgex application.ex
Raw

lib/hedgex/application.ex

defmodule Hedgex.Application do
use Application
@impl true
def start(_type, _args) do
children = [
Hedgex.CaptureSupervisor
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end