Current section
Files
Jump to
Current section
Files
lib/mix/tasks/eh.git.ops.types.ex
defmodule Mix.Tasks.Eh.Git.Ops.Types do
@shortdoc "Show git_ops types"
use Mix.Task
@requirements ["app.config"]
@impl true
def run(_args) do
GitOps.Config.types()
|> IO.inspect(label: "git_ops types", pretty: true)
end
end