Current section

Files

Jump to
opencode_sdk lib opencode generated assistant_message_path.ex
Raw

lib/opencode/generated/assistant_message_path.ex

defmodule OpenCode.Generated.AssistantMessagePath do
@moduledoc """
Provides struct and type for a AssistantMessagePath
"""
@type t :: %__MODULE__{cwd: String.t(), root: String.t()}
defstruct [:cwd, :root]
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[cwd: :string, root: :string]
end
end