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.

22 lines
384B

  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. "upload": None
  8. }
  9. def get_task_record():
  10. return TASK_RECORD
  11. # EasyRtmpLive
  12. CHANNEL_LIST_URL = "http://localhost:19610/api/v1/getChannelList?offset=0&row=50"
  13. UPDATE_CHANNEL_URL = 'http://localhost:19610/api/v1/updateChannel?%s'