aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/queues.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysite/queues.py')
-rw-r--r--pysite/queues.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/pysite/queues.py b/pysite/queues.py
new file mode 100644
index 00000000..7a200208
--- /dev/null
+++ b/pysite/queues.py
@@ -0,0 +1,5 @@
+from kombu import Queue
+
+QUEUES = { # RabbitMQ Queue definitions, they'll be declared at gunicorn start time
+ "bot_events": Queue("bot_events", durable=True)
+}