2007-09-27 | paulb | raw annotate files changeset graph | [project @ 2007-09-27 17:48:43 by paulb] Tidied up the javadoc strings. |
1 #!/usr/bin/env python 2 3 # Uncomment and adjust the paths below if WebStack is not installed somewhere 4 # on the PYTHONPATH. 5 6 #import sys 7 #sys.path.append("/home/paulb/Software/Python/WebStack") 8 #sys.path.append("/home/paulb/Software/Python/WebStack/examples/Common") 9 10 from WebStack.Adapters.CGI import deploy 11 from Sessions import SessionsResource 12 13 deploy(SessionsResource()) 14 15 # vim: tabstop=4 expandtab shiftwidth=4