10 lines
191 B
Python
10 lines
191 B
Python
from SprintLib.queue import MessagingSupport
|
|
|
|
|
|
class Command(MessagingSupport):
|
|
help = "starts file generator"
|
|
queue_name = "files"
|
|
|
|
def process(self, payload: dict):
|
|
...
|