mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-10 09:03:02 +08:00
12 lines
259 B
Elixir
12 lines
259 B
Elixir
|
defmodule LivebookCLI.Task do
|
||
|
@doc """
|
||
|
Returns a description of the task usage.
|
||
|
"""
|
||
|
@callback usage() :: String.t()
|
||
|
|
||
|
@doc """
|
||
|
Runs the task with the given list of command line arguments.
|
||
|
"""
|
||
|
@callback call(args :: list(String.t())) :: :ok
|
||
|
end
|