Current section

Files

Jump to
opencode_sdk lib opencode generated location_info_project.ex
Raw

lib/opencode/generated/location_info_project.ex

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