Current section

Files

Jump to
benchee_dsl lib benchee_dsl application.ex
Raw

lib/benchee_dsl/application.ex

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