You've already forked flask-file-uploads
mirror of
https://github.com/LukePeters/flask-file-uploads.git
synced 2026-05-06 02:11:06 +09:00
7 lines
132 B
Python
7 lines
132 B
Python
from flask import Flask, render_template
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return render_template('index.html') |