File: task_description.ex

package info (click to toggle)
erlang-hex 2.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,204 kB
  • sloc: erlang: 2,950; sh: 203; makefile: 10
file content (8 lines) | stat: -rw-r--r-- 184 bytes parent folder | download
1
2
3
4
5
6
7
8
defmodule Hex.Mix.TaskDescription do
  @moduledoc false

  @type args :: String.t()
  @type docs :: String.t()
  @type task_spec :: {args, docs}
  @callback tasks() :: [task_spec]
end