Packages

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

Current section

Files

Jump to
dragon lib cli index.ex
Raw

lib/cli/index.ex

defmodule Dragon.Cli do
@moduledoc false
@opts [
switches: [],
aliases: [],
commands: [
{"b?uild", Dragon.Cli.Build},
{"s?erve", Dragon.Cli.Serve},
{"n?ew", Dragon.Cli.New},
{"con?vert", Dragon.Cli.Convert}
],
command: "dragon"
]
def main(args) do
Rivet.Utils.Cli.run_command(args, @opts)
end
end