mirror of
https://gitee.com/WuKongDev/WuKongIM.git
synced 2025-12-06 14:59:08 +08:00
15 lines
206 B
Go
15 lines
206 B
Go
package handler
|
|
|
|
import "github.com/WuKongIM/WuKongIM/pkg/cluster/node/types"
|
|
|
|
type Handler struct {
|
|
}
|
|
|
|
func New() *Handler {
|
|
return &Handler{}
|
|
}
|
|
|
|
func (h *Handler) OnEvent(event *types.Event) {
|
|
return
|
|
}
|