Current section
Files
Jump to
Current section
Files
lib/asm/tool.ex
defmodule ASM.Tool do
@moduledoc """
Behaviour for run-time tool handlers.
"""
@callback call(input :: map(), context :: map()) :: {:ok, term()} | {:error, term()}
end