Packages

Content Management System for static sites, like Jekyll but with elixir/eex rather than liquid templates

Current section

Files

Jump to
dragon lib application.ex
Raw

lib/application.ex

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