| Index: appengine/predator/app/backend/main.py
|
| diff --git a/appengine/predator/app/backend/main.py b/appengine/predator/app/backend/main.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0d000c1dd624f589fe5316f6965522ed59d48e2a
|
| --- /dev/null
|
| +++ b/appengine/predator/app/backend/main.py
|
| @@ -0,0 +1,9 @@
|
| +import webapp2
|
| +
|
| +from backend.handlers import analyze_crash
|
| +
|
| +
|
| +backend_handler_mappings = [
|
| + ('/backend/analyze-crash', analyze_crash.AnalyzeCrash),
|
| +]
|
| +backend_app = webapp2.WSGIApplication(backend_handler_mappings, debug=False)
|
|
|