mirror of
https://github.com/paradoxxxzero/butterfly.git
synced 2026-06-07 21:04:38 +00:00
8 lines
126 B
Python
8 lines
126 B
Python
from . import app
|
|
from flask import render_template
|
|
|
|
|
|
@app.route("/")
|
|
def index():
|
|
return render_template('index.jinja2')
|