Port change.

This commit is contained in:
retoor 2024-12-29 16:47:14 +01:00
parent 64d898c31b
commit 79d4e850da

View File

@ -10,7 +10,7 @@ def main():
executor = Executor(max_workers=20)
loop = asyncio.get_event_loop()
loop.set_default_executor(executor)
web.run_app(app, loop=loop)
web.run_app(app, loop=loop,port=3080)
if __name__ == "__main__":