This commit is contained in:
mwiegand 2022-06-01 18:12:22 +02:00
parent 20dc17120e
commit 11c7b068e8

View file

@ -11,10 +11,10 @@ app = Flask(__name__)
@app.route('/')
def home():
return str('RESULTS:', str(select(
return str(select(
'''
SELECT * FROM messages
ORDER BY date
LIMIT 10
'''
)))
))