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

Unified Diff: appengine/predator/app/frontend/main.py

Issue 2447253002: [Findit & Predator] Code reorg of Findit. (Closed)
Patch Set: Clean up. Created 4 years, 1 month 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/predator/app/frontend/main.py
diff --git a/appengine/predator/app/frontend/main.py b/appengine/predator/app/frontend/main.py
new file mode 100644
index 0000000000000000000000000000000000000000..61c0ecb72ab74c1f40d24174b6fa856086bd1d14
--- /dev/null
+++ b/appengine/predator/app/frontend/main.py
@@ -0,0 +1,11 @@
+import webapp2
+
+from frontend.handlers import version
+from frontend.handlers import report_crash
+
+frontend_web_pages_handler_mappings = [
+ ('/version', version.Version),
+ ('/report-crash', report_crash.ReportCrash),
+]
+frontend_app = webapp2.WSGIApplication(
+ frontend_web_pages_handler_mappings, debug=False)

Powered by Google App Engine
This is Rietveld 408576698