aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/queues.py
blob: 7a200208d42b36a94a76f172ca1bfb30f5c1af3a (plain) (blame)
1
2
3
4
5
from kombu import Queue

QUEUES = {  # RabbitMQ Queue definitions, they'll be declared at gunicorn start time
    "bot_events": Queue("bot_events", durable=True)
}