lib/shatter/service/response_pool.rb in shatter-rb-0.0.2 vs lib/shatter/service/response_pool.rb in shatter-rb-0.1.0

- old
+ new

@@ -1,10 +1,15 @@ -require 'singleton' +# frozen_string_literal: true + +require "singleton" module Shatter - class ResponsePool - include Singleton - attr_reader :pool - def initialize - @pool = {} + module Service + class ResponsePool + include Singleton + attr_reader :pool + + def initialize + @pool = {} + end end end -end \ No newline at end of file +end