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 from WebStack.Adapters.Django import deploy 4 from Auth import AuthResource, AuthAuthenticator 5 6 resource = AuthResource() 7 authenticator = AuthAuthenticator() 8 9 auth = deploy(resource, authenticator=authenticator, handle_errors=1) 10 11 # vim: tabstop=4 expandtab shiftwidth=4