updating initial layout

This commit is contained in:
2020-01-27 03:48:57 +00:00
parent c776b86b27
commit 5a72c9cb3e
205 changed files with 68269 additions and 0 deletions

View File

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