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
5import webapp2
6
7from handlers import blank
8from handlers import query
9from 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]
18app = webapp2.WSGIApplication(_URL_MAPPING)  # pylint: disable=invalid-name
19