• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 builds
9
10
11_URL_MAPPING = [
12    ('/_ah/health', blank.Blank),
13    ('/_ah/start', blank.Blank),
14    ('/builds', builds.Builds),
15]
16app = webapp2.WSGIApplication(_URL_MAPPING)  # pylint: disable=invalid-name
17