1=begin
2 distributed Ruby --- store
3 	Copyright (c) 1999-2000 Masatoshi SEKI
4=end
5
6require 'drb/drb'
7require 'dqlib'
8
9there = ARGV.shift || raise("usage: #{$0} <server_uri>")
10
11DRb.start_service
12queue = DRbObject.new(nil, there)
13queue.push(DQEntry.new(DRb.uri))
14