Packages

CLI to inspect, export, and delete Mastodon posts safely.

Current section

Files

Jump to
mastomation lib cli.ex
Raw

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