applying .gitignore

This commit is contained in:
2020-01-28 00:15:27 +00:00
parent 180df1a65d
commit 1a1346b217
107 changed files with 68948 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route('/')
def serve():
return render_template('index.html')
if __name__ == '__main__':
app.run()