Files
godoxy-yusing/internal/watcher/watcher.go
yusing 1244af0e38 refactor(watcher): rename events package to watcherEvents
- Updated import paths and references from events to watcherEvents across multiple files
2026-02-15 14:35:23 +08:00

14 lines
226 B
Go

package watcher
import (
"context"
watcherEvents "github.com/yusing/godoxy/internal/watcher/events"
)
type Event = watcherEvents.Event
type Watcher interface {
Events(ctx context.Context) (<-chan Event, <-chan error)
}