以下代码不足以列出自定义任务吗mix help?
defmodule Mix.Tasks.Start do
use Mix.Task
@shortdoc "Starts [App]"
def run(_) do
IO.puts("Starting [App]...")
end
end
Run Code Online (Sandbox Code Playgroud)
我认为装饰器@shortdoc足以列出我的自定义任务,mix help但我重新编译了我的代码,但我的自定义任务没有列出在 上mix help。