module FastSerializer::Schema::Mixin

Public Class Methods

included(base) click to toggle source
# File lib/fast_serializer/schema/mixin.rb, line 63
def self.included(base)
  base.extend ClassMethods
  base.include InstanceMethods
  base.__schema__ = FastSerializer::Schema.new
end