mirror of
https://github.com/42wim/matterbridge.git
synced 2025-01-10 20:42:37 +01: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()
|
|
}
|