annot-server/webapp.py
changeset 22 986ee928a866
parent 21 89d235bcbbf3
child 23 16a1925df2df
--- a/annot-server/webapp.py	Tue Oct 14 18:00:13 2014 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-
-#
-# See LICENCE for detail
-# Copyright (c) 2014 IRI
-#
-
-import uuid
-
-from flask import Flask, render_template
-
-import config
-
-app = Flask(__name__)
-app.secret_key = str(uuid.uuid4())
-app.config.from_object(config)
-
-@app.route('/')
-def page_home():
-    return render_template('index.html')
-    #return render_template('annotationclient.html', logging=True)
-
-
-@app.route('/annot')
-def page_annot():
-    return render_template('annot.html')
-
-
-@app.route('/annotationclient')
-def page_annotationclient():
-    return render_template('annotationclient.html', logging=True)