zf

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

name.ex (286B)


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