12 lines
216 B
Python
12 lines
216 B
Python
![]() |
from flask import Flask, render_template
|
||
|
from bpy2 import bp, bp2
|
||
|
|
||
|
app = Flask(__name__)
|
||
|
app.register_blueprint(bp)
|
||
|
app.register_blueprint(bp2)
|
||
|
|
||
|
@app.route("/")
|
||
|
def index():
|
||
|
return render_template('maint.html')
|
||
|
|