Files
IOPaint/web/app.py
李渊博 558a8febef init
2023-04-11 12:05:10 +08:00

15 lines
275 B
Python

# -*- coding: utf-8 -*-
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route('/')
@app.route('/<name>')
def hello(name=None):
return render_template('index.html', name=name)
if __name__ == '__main__':
app.run(host='0.0.0.0')