blob: bce25a3171b08db086754f0dc0da0e8a4356d0fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /usr/bin/env python
import sys, pgq
class TestConsumer(pgq.SetConsumer):
pass
if __name__ == '__main__':
script = TestConsumer('test_consumer', sys.argv[1:])
script.start()
|