Files

9 lines
165 B
Go
Raw Permalink Normal View History

2025-10-02 00:18:13 +08:00
package webhook
2025-09-15 22:01:00 +08:00
import "net/http"
// ListenHandler 是一个监听器, 用于监听设备上行事件
type ListenHandler interface {
Handler() http.HandlerFunc
}