Current section
Files
Jump to
Current section
Files
lib/mix/tasks/hello.ex
defmodule Mix.Tasks.Hello do
use Mix.Task
@shortdoc "Hello task"
def run(_) do
Mix.shell().info("Hello task")
end
end