anonstream/app.py

11 行
196 B
Python
Raw 通常表示 履歴

2022-02-12 11:27:40 +09:00
from quart import Quart, render_template
app = Quart(__name__)
@app.route('/')
async def home():
return await render_template('home.html')
if __name__ == '__main__':
app.run(port=5051)