# File lib/fog/core/provider.rb, line 22
    def service(new_service, path, constant_string)
      Fog.services[new_service] ||= []
      Fog.services[new_service] |= [self.to_s.split('::').last.downcase.to_sym]
      @services_registry ||= {}
      @services_registry[new_service] = [self.to_s, constant_string].join('::')
      require File.join('fog', path)
    end