Files
godoxy-yusing/src/watcher/watcher.go
2024-08-01 10:06:42 +08:00

12 lines
172 B
Go

package watcher
import (
"context"
E "github.com/yusing/go-proxy/error"
)
type Watcher interface {
Events(ctx context.Context) (<-chan Event, <-chan E.NestedError)
}