tofoo/app.py
2024-05-17 07:52:15 +09:00

11 lines
243 B
Python
Executable file

from flask import Flask, render_template, send_from_directory
app = Flask(__name__)
@app.route('/')
@app.route('/index')
def index():
return render_template('index.html', title='Home')
if __name__ == '__main__':
app.run(debug=True)