blob: 8e181ac7b05cb67558afa61cf68802b92823cc43 [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
phoglund@webrtc.orgc5adf012012-03-15 11:02:04 +000016import add_coverage_data
17import dashboard
phoglund@webrtc.orgc5adf012012-03-15 11:02:04 +000018
19app = webapp2.WSGIApplication([('/', dashboard.ShowDashboard),
phoglund@webrtc.orgc5adf012012-03-15 11:02:04 +000020 ('/add_coverage_data',
phoglund@webrtc.orgc9fa0fe2013-08-26 08:45:22 +000021 add_coverage_data.AddCoverageData)],
phoglund@webrtc.orgc5adf012012-03-15 11:02:04 +000022 debug=True)