zf

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

deprecation.ex (171B)


      1 defmodule Absinthe.Blueprint.Schema.Deprecation do
      2   @moduledoc false
      3 
      4   defstruct reason: nil
      5 
      6   @type t :: %__MODULE__{
      7           reason: nil | String.t()
      8         }
      9 end