refactor(watcher): rename events package to watcherEvents

- Updated import paths and references from events to watcherEvents across multiple files
This commit is contained in:
yusing
2026-02-15 14:35:23 +08:00
parent d619562f00
commit 1244af0e38
9 changed files with 30 additions and 30 deletions

View File

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