You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 line
216B

  1. # -*- coding: utf-8 -*-
  2. from multiprocessing import Queue
  3. SHARE_QUEUE = Queue()
  4. def get_share_queue():
  5. return SHARE_QUEUE
  6. TASK_RECORD = {
  7. "stream": None
  8. }
  9. def get_task_record():
  10. return TASK_RECORD