dry-types/lib/dry/types/container.rb

15 lines
229 B
Ruby

# frozen_string_literal: true
require 'dry/container'
module Dry
module Types
# Internal container for the built-in types
#
# @api private
class Container
include Dry::Container::Mixin
end
end
end