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.

11 satır
353B

  1. # -*- coding: utf-8 -*-
  2. from service import Dispatcher
  3. '''
  4. dsp主程序入口
  5. '''
  6. if __name__ == '__main__':
  7. print("(♥◠‿◠)ノ゙ DSP【算法调度服务】开始启动 ლ(´ڡ`ლ)゙")
  8. Dispatcher.DispatcherService().start_service()
  9. print("(♥◠‿◠)ノ゙ DSP【算法调度服务】启动成功 ლ(´ڡ`ლ)゙")