phoglund@webrtc.org | c5adf01 | 2012-03-15 11:02:04 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | #-*- coding: utf-8 -*- |
| 3 | # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 4 | # |
| 5 | # Use of this source code is governed by a BSD-style license |
| 6 | # that can be found in the LICENSE file in the root of the source |
| 7 | # tree. An additional intellectual property rights grant can be found |
| 8 | # in the file PATENTS. All contributing project authors may |
| 9 | # be found in the AUTHORS file in the root of the source tree. |
| 10 | |
| 11 | """Connects all URLs with their respective handlers.""" |
| 12 | |
phoglund@webrtc.org | c5adf01 | 2012-03-15 11:02:04 +0000 | [diff] [blame] | 13 | from google.appengine.ext.webapp import template |
| 14 | import webapp2 |
| 15 | |
| 16 | import add_build_status_data |
| 17 | import add_coverage_data |
| 18 | import dashboard |
| 19 | import lkgr_page |
| 20 | |
| 21 | app = webapp2.WSGIApplication([('/', dashboard.ShowDashboard), |
| 22 | ('/lkgr', lkgr_page.ShowLkgr), |
| 23 | ('/add_coverage_data', |
| 24 | add_coverage_data.AddCoverageData), |
| 25 | ('/add_build_status_data', |
| 26 | add_build_status_data.AddBuildStatusData)], |
| 27 | debug=True) |