flask webui looking good

This commit is contained in:
Dobromir Popov
2024-10-13 01:37:10 +03:00
parent 49384accf6
commit a655c5bd88
8 changed files with 257 additions and 165 deletions

View File

@ -1465,6 +1465,7 @@ async def main():
from modules.webui import init_app
from modules.storage import init_db
async def run_flask():
# loop = asyncio.get_running_loop()
@ -1475,6 +1476,7 @@ async def run_flask():
async def run_all():
await asyncio.gather(
init_db(),
main(),
run_flask()
)