simplifying a lot of shit

This commit is contained in:
d3m1g0d
2019-03-26 19:05:42 +01:00
parent 9677273f55
commit 548337258f
4 changed files with 53 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
from flask import Flask
app = Flask(__name__)
@app.route('/<txt>')
def root(txt):
return 'txt={}'.format(txt)