mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-13 03:06:06 +08:00
64dad900d7
Closes #2216.
11 lines
259 B
Elixir
11 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
|