18 lines
477 B
Python
18 lines
477 B
Python
# Copyright 2015 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import webapp2
|
|
|
|
from handlers import blank
|
|
from handlers import query
|
|
from handlers import trace
|
|
|
|
|
|
_URL_MAPPING = [
|
|
('/', trace.Trace),
|
|
('/_ah/health', blank.Blank),
|
|
('/_ah/start', blank.Blank),
|
|
('/query', query.Query),
|
|
]
|
|
app = webapp2.WSGIApplication(_URL_MAPPING) # pylint: disable=invalid-name
|