Home | History | Annotate | Download | only in default
      1 # Copyright 2015 The Chromium Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 import webapp2
      6 
      7 from handlers import blank
      8 from handlers import query
      9 from handlers import trace
     10 
     11 
     12 _URL_MAPPING = [
     13     ('/', trace.Trace),
     14     ('/_ah/health', blank.Blank),
     15     ('/_ah/start', blank.Blank),
     16     ('/query', query.Query),
     17 ]
     18 app = webapp2.WSGIApplication(_URL_MAPPING)  # pylint: disable=invalid-name
     19