11 lines
202 B
Python
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()
|