mirror of
https://github.com/NovaOSS/LingoSynth.git
synced 2024-11-25 23:33:59 +01:00
7 lines
134 B
Python
7 lines
134 B
Python
|
import flask
|
||
|
|
||
|
def register(app: flask.Flask):
|
||
|
@app.route('/')
|
||
|
def index():
|
||
|
return flask.render_template('index.html')
|