Packages

Providing a web interface to interact with mix xref graph output

Current section

Files

Jump to
ex_compile_graph lib application.ex
Raw

lib/application.ex

defmodule ExCompileGraph.Application do
use Application
def start(_type, _args) do
children = [
{Plug.Cowboy, scheme: :http, plug: ExCompileGraphWeb.Server, port: 4040}
]
ExCompileGraph.init()
Supervisor.start_link(children, strategy: :one_for_one)
end
end