zf

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

reference.ex (202B)


      1 defmodule Absinthe.Type.Reference do
      2   @moduledoc false
      3 
      4   @typedoc false
      5   @type t :: %__MODULE__{module: atom, identifier: atom, name: binary}
      6 
      7   defstruct module: nil, identifier: nil, name: nil
      8 end