8 lines
147 B
Python
8 lines
147 B
Python
from flask import Flask
|
|
from flask import render_template
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def main():
|
|
return render_template('index.html')
|