2005-03-24 | paulb | file changeset files shortlog | [project @ 2005-03-24 17:40:59 by paulb] Introduced a standardised 'deploy' function for all suitable frameworks. |
paulb@220 | 1 | #!/usr/bin/env python |
paulb@220 | 2 | |
paulb@324 | 3 | from WebStack.Adapters.BaseHTTPRequestHandler import deploy |
paulb@220 | 4 | from Unicode import UnicodeResource |
paulb@220 | 5 | |
paulb@265 | 6 | print "Serving..." |
paulb@324 | 7 | deploy(UnicodeResource()) |
paulb@220 | 8 | |
paulb@220 | 9 | # vim: tabstop=4 expandtab shiftwidth=4 |