Current section

Files

Jump to
ex_dgraph lib exdgraph application.ex
Raw

lib/exdgraph/application.ex

defmodule ExDgraph.Application do
@moduledoc false
use Application
def start(_, start_args) do
ExDgraph.start_link(start_args)
end
def stop(_state) do
:ok
end
end