mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-26 23:41:36 +00:00
8 lines
196 B
Go
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()
|
||
|
}
|