build0004

This commit is contained in:
Hell13Cat
2021-12-29 00:17:28 +03:00
parent 3d613c0267
commit f2acdc4140
5 changed files with 127 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def hello():
return render_template('index.html')
@app.route('/static')
def hello():
return 'Hello, World!'