mirror of
https://github.com/xaionaro-go/streamctl.git
synced 2025-09-27 03:45:52 +08:00
13 lines
208 B
Go
13 lines
208 B
Go
package twitch
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/xaionaro-go/streamctl/pkg/streamcontrol"
|
|
)
|
|
|
|
type ChatHandler interface {
|
|
Close(ctx context.Context) error
|
|
MessagesChan() <-chan streamcontrol.ChatMessage
|
|
}
|