Current section

Files

Jump to
oapi_github lib schemas code_frequency_stat.ex
Raw

lib/schemas/code_frequency_stat.ex

defmodule GitHub.CodeFrequencyStat do
@moduledoc """
Provides struct and type for CodeFrequencyStat
"""
@type t :: %__MODULE__{}
defstruct []
@doc false
@spec __fields__(atom) :: keyword
def __fields__(type \\ :t)
def __fields__(:t) do
[]
end
end