Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(380)

Unified Diff: appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/main.py

Issue 774323002: Moved trooper_o_matic to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/main.py
diff --git a/appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/main.py b/appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/main.py
deleted file mode 100644
index 255b69ecb0ac5499fe1d6a2a9984b8ea13538904..0000000000000000000000000000000000000000
--- a/appengine_apps/trooper_o_matic/appengine_module/trooper_o_matic/main.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright (c) 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import webapp2
-
-from appengine_module.trooper_o_matic import alerts
-from appengine_module.trooper_o_matic import build_details
-from appengine_module.trooper_o_matic import cq
-from appengine_module.trooper_o_matic import cron
-from appengine_module.trooper_o_matic import tree
-from appengine_module.trooper_o_matic import tree_status
-
-# Set route definitions and enable debug stacks in the UI. See
-# https://webapp-improved.appspot.com/guide/app.html#debug-flag
-application = webapp2.WSGIApplication([
- ('[/]', alerts.OverviewHandler),
- ('/alerts', alerts.AlertsHandler),
- ('/build-details/(.*)', build_details.BuildDetailsHandler),
- ('/check-cq', cron.CheckCQHandler),
- ('/check-tree/(.*)', cron.CheckTreeHandler),
- ('/check-tree-status/([^/]*)/(.*)', cron.CheckTreeStatusHandler),
- ('/cq/(.*)', cq.CQHandler),
- ('/tree/(.*)', tree.TreeHandler),
- ('/tree-status/(.*)', tree_status.TreeStatusHandler),
- ('/project/([^/]*)/cq-length/?', cq.CQLengthJSONHandler),
- ('/project/([^/]*)/tree-status/?', tree_status.TreeStatusJSONHandler),
-], debug=True)

Powered by Google App Engine
This is Rietveld 408576698