blob: b98465952fb89ad6c5d1627f2ad798431a6dfceb [file] [log] [blame]
phoglund@webrtc.orgc5adf012012-03-15 11:02:04 +00001#!/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.orgc5adf012012-03-15 11:02:04 +000013from google.appengine.ext.webapp import template
14import webapp2
15
16import add_build_status_data
17import add_coverage_data
18import dashboard
19import lkgr_page
20
21app = 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)