zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

list.ex (307B)


      1 defmodule Absinthe.Blueprint.TypeReference.List do
      2   @moduledoc false
      3 
      4   alias Absinthe.Blueprint
      5 
      6   @enforce_keys [:of_type]
      7   defstruct [
      8     :of_type,
      9     errors: []
     10   ]
     11 
     12   @type t :: %__MODULE__{
     13           of_type: Blueprint.TypeReference.t(),
     14           errors: [Absinthe.Phase.Error.t()]
     15         }
     16 end