bbz/app.py
2024-12-22 07:46:04 +01:00

11 lines
202 B
Python

from flask import Flask, render_template
from bpy2 import bp, bp2
app = Flask(__name__)
@app.route("/")
def index():
return render_template('maint.html')
if __name__ == '__main__':
app.run()