Remove half complete flask container.

This commit is contained in:
2013-10-14 01:13:03 +01:00
parent 4089ebf665
commit 6dbbe5e259

View File

@@ -1,13 +0,0 @@
try:
from flask import Flask
except ImportError:
raise Exception('Flask is not available, please install if you wish to use Standings as a webapp')
from .core import Standings
app = Flask(__name__)
stdobj = Standings()
@app.route('/')
def standings():
return stdobj._get_html()