zf

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

use.ex (322B)


      1 defmodule Absinthe.Blueprint.Input.Variable.Use do
      2   @moduledoc false
      3 
      4   alias Absinthe.Blueprint
      5 
      6   @enforce_keys [:name, :source_location]
      7   defstruct [
      8     :name,
      9     :source_location
     10   ]
     11 
     12   @type t :: %__MODULE__{
     13           name: String.t(),
     14           source_location: nil | Blueprint.SourceLocation.t()
     15         }
     16 end