add formating to the pipeline

This commit is contained in:
Jean-Marie Mineau 2021-10-06 00:05:10 +02:00
parent d8aff91f6f
commit d9ef6690fc
No known key found for this signature in database
GPG key ID: 67486F107F62E9E9
2 changed files with 39 additions and 1 deletions

View file

@ -3,6 +3,7 @@ import asyncio
from .config import load_config
from .bot import send_messages
from .format import format_alerts
from .webhook import run_webhook
async def main():
@ -12,14 +13,19 @@ async def main():
config = load_config(args.config)
alert_queue = asyncio.Queue()
message_queue = asyncio.Queue()
bot_corout = send_messages(
alert_queue, # Will change in the futur
message_queue,
config.username,
config.homeserver,
config.password,
config.alert_rooms
)
format_corout = format_alerts(
alert_queue,
message_queue
)
webhook_corout = run_webhook(
alert_queue,
config.host,
@ -29,6 +35,7 @@ async def main():
await asyncio.gather(
bot_corout,
format_corout,
webhook_corout
)