deps/deps.go:79:6: exported type Listeners should have comment or be unexported
deps/deps.go:86:1: exported method Listeners.Add should have comment or be unexported
deps/deps.go:92:1: exported method Listeners.Notify should have comment or be unexported
BuildStartListeners *Listeners
}
+// Listeners represents an event listener.
type Listeners struct {
sync.Mutex
listeners []func()
}
+// Add adds a function to a Listeners instance.
func (b *Listeners) Add(f func()) {
b.Lock()
defer b.Unlock()
b.listeners = append(b.listeners, f)
}
+// Notify executes all listener functions.
func (b *Listeners) Notify() {
b.Lock()
defer b.Unlock()