18 lines
295 B
Go
18 lines
295 B
Go
/**
|
|
* @Company: 云南奇讯科技有限公司
|
|
* @Author: yxf
|
|
* @Description:
|
|
* @Date: 2024/1/25 16:22
|
|
*/
|
|
|
|
package eventBus
|
|
|
|
import (
|
|
"github.com/asaskevich/EventBus"
|
|
"github.com/tiger1103/gfast/v3/internal/app/common/service"
|
|
)
|
|
|
|
func init() {
|
|
service.RegisterEventBus(EventBus.New())
|
|
}
|