Advertisement
johnlockwood

Untitled

Dec 29th, 2012
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import webapp2
  2.  
  3. from google.appengine.ext.webapp.util import run_wsgi_app
  4.  
  5. app = ...
  6.  
  7. def main():
  8. run_wsgi_app(app)
  9.  
  10.  
  11. if __name__ == '__main__':
  12. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement