sprint/daemons/management/commands/file_generator.py
Egor Matveev d8cfa99eb1 messaging
2022-03-15 01:20:59 +03:00

9 lines
205 B
Python

from SprintLib.queue import MessagingSupport
class Command(MessagingSupport):
help = "starts file generator"
queue_name = "files"
def consume(self, ch, method, properties, body):
...