blob: bf8ea685886b861d050e1edd0cc63e40010bd256 [file] [log] [blame]
# 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