zf

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

raw_value.ex (237B)


      1 defmodule Absinthe.Blueprint.Input.RawValue do
      2   @moduledoc false
      3 
      4   alias Absinthe.Blueprint.Input.Object
      5 
      6   @enforce_keys [:content]
      7   defstruct [
      8     :content
      9   ]
     10 
     11   @type t :: %__MODULE__{
     12           content: Object.t()
     13         }
     14 end