summaryrefslogtreecommitdiff
path: root/extras/appengine/sqlformat/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'extras/appengine/sqlformat/__init__.py')
-rw-r--r--extras/appengine/sqlformat/__init__.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/extras/appengine/sqlformat/__init__.py b/extras/appengine/sqlformat/__init__.py
deleted file mode 100644
index 11f4d9d..0000000
--- a/extras/appengine/sqlformat/__init__.py
+++ /dev/null
@@ -1,19 +0,0 @@
-from flask import Flask, make_response
-
-from sqlformat.legacy import legacy
-
-
-app = Flask('sqlformat')
-
-
-@app.route('/ping')
-def ping():
- return make_response('pong')
-
-@app.route('/_ah/warmup')
-def warmup():
- return make_response('polishing chrome')
-
-
-# Register legacy URLs last so that newer URLs replace them.
-app.register_blueprint(legacy)