blob: 41d4bebe6345bfc22c2eb04c557469ae8e30de2a [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
13__author__ = 'phoglund@webrtc.org (Patrik Höglund)'
14
15from google.appengine.ext.webapp import template
16import webapp2
17
18import add_build_status_data
19import add_coverage_data
20import dashboard
21import lkgr_page
22
23app = webapp2.WSGIApplication([('/', dashboard.ShowDashboard),
24 ('/lkgr', lkgr_page.ShowLkgr),
25 ('/add_coverage_data',
26 add_coverage_data.AddCoverageData),
27 ('/add_build_status_data',
28 add_build_status_data.AddBuildStatusData)],
29 debug=True)