769dfd2f3e2a8515ef9fc1744a828ca5f8a8d207
[flowspy] / run_poller.py
1 #!/usr/bin/python
2 from gevent.wsgi import WSGIServer
3 from poller.application import application
4 print 'Serving on 8000...'
5 WSGIServer(('netdev.grnet.gr', 9090), application).serve_forever()