7 lines
138 B
Python
7 lines
138 B
Python
from .eventbus import EventBus
|
|
|
|
# Pring Log
|
|
EventPrintLog = "print_log" # 打印日志
|
|
|
|
# 创建事件总线实例
|
|
loggerEBus = EventBus() |