From: Cameron Moore Date: Thu, 6 Sep 2018 18:23:56 +0000 (-0500) Subject: deps: Fix most golint issues X-Git-Tag: v0.49~54 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a53f962312e273cea9fe460b40655350a82210f2;p=brevno-suite%2Fhugo deps: Fix most golint issues 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 --- diff --git a/deps/deps.go b/deps/deps.go index 3eecffca..2b66a153 100644 --- a/deps/deps.go +++ b/deps/deps.go @@ -76,6 +76,7 @@ type Deps struct { BuildStartListeners *Listeners } +// Listeners represents an event listener. type Listeners struct { sync.Mutex @@ -83,12 +84,14 @@ type Listeners struct { 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()