mirror of
https://github.com/42wim/matterbridge.git
synced 2025-07-05 13:07:31 +02: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()
|
|
}
|