5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-23 03:31:37 +00:00
matterbridge/vendor/layeh.com/gumble/gumble/detacher.go
2020-10-01 22:50:56 +02:00

8 lines
196 B
Go

package gumble
// Detacher is an interface that event listeners implement. After the Detach
// method is called, the listener will no longer receive events.
type Detacher interface {
Detach()
}