Packages

Elixir implementation of [ABT DID protocol](https://github.com/ArcBlock/abt-did-spec).

Current section

Files

Jump to
abt_did_elixir lib application.ex
Raw

lib/application.ex

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