module Dry::Container::Nested

@example

module Example
  extend Dry::Container::Mixin

  register :key, Object.new
  register :callable, proc { 1 }, call: false
  module Nested
    extend Dry::Container::Nested
    register :another, Object.new
  end
end

Constants

Undefined
VERSION