view contrib/tor2dns/serve @ 1084:93106436f24f draft

allow arguments for ./git-commit and ./gitd
author SeekingFor <nobody@nowhere>
date Sat, 16 Mar 2013 13:03:25 +0000
parents 5c86c4e82b4c
children
line wrap: on
line source

#!/usr/bin/python
import SimpleHTTPServer
import SocketServer

PORT = 8053

Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
httpd = SocketServer.TCPServer(("", PORT), Handler)
httpd.serve_forever()