module SassListen::Internals::ThreadPool

def self.add(&block)

def self.add(&block)
  Thread.new { block.call }.tap do |th|
    (@threads ||= Queue.new) << th
  end
end