Current section

Files

Jump to
agent_session_manager lib asm tool.ex
Raw

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