Current section

Files

Jump to
opencode_sdk lib opencode generated move_session_destination.ex
Raw

lib/opencode/generated/move_session_destination.ex

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