Current section
Files
Jump to
Current section
Files
lib/cli.ex
defmodule Mastomation.CLI do
@moduledoc """
Escript entrypoint for Mastomation.
"""
alias Mastomation, as: ME
@doc """
Runs the CLI using the provided argument list.
"""
@spec main([String.t()]) :: :ok | :error
def main(args) do
ME.run(args)
end
end