2
2
kopia lustrzana https://github.com/Hilbis/Hilbish synced 2025-07-13 06:12:03 +00:00

fix(bait): allow more than 1 argment for catch callback

This commit is contained in:
sammyette 2021-10-13 23:41:20 -04:00
rodzic 4596159b8f
commit 63061e3a52
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 50EE40A2809851F5

Wyświetl plik

@ -30,6 +30,6 @@ func (b *Bait) throw(name string, args ...interface{}) {
b.Em.Emit(name, args...) b.Em.Emit(name, args...)
} }
func (b *Bait) catch(name string, catcher func(interface{})) { func (b *Bait) catch(name string, catcher func(...interface{})) {
b.Em.On(name, catcher) b.Em.On(name, catcher)
} }