Skip to content

Commit

Permalink
added noop.py handler
Browse files Browse the repository at this point in the history
  • Loading branch information
trey0 committed Sep 13, 2012
1 parent 04b149a commit 7f3f8c0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions noop.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# __BEGIN_LICENSE__
# Copyright (C) 2008-2010 United States Government as represented by
# the Administrator of the National Aeronautics and Space Administration.
# All Rights Reserved.
# __END_LICENSE__

import webapp2

class NoopPage(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.write('ok')

app = webapp2.WSGIApplication([('/', NoopPage)],
debug=True)

0 comments on commit 7f3f8c0

Please sign in to comment.