Fix starting

This commit is contained in:
2024-08-09 22:36:37 +02:00
parent f63b04c4b5
commit 674b44089f

View File

@@ -3,9 +3,16 @@ from asyncio import gather
from services.discord import start_discord_sevice
from services.twitch import start_twitch_service
async def main():
print("Starting services...")
await gather(
start_discord_sevice(),
start_twitch_service()
)
if __name__ == "__main__":
from asyncio import run
run(main())