Files
streamctl/pkg/streamcontrol/twitch/chat_handler.go
Dmitrii Okunev 1004082fe4
Some checks failed
rolling-release / build (push) Has been cancelled
rolling-release / rolling-release (push) Has been cancelled
Multiple updates
2025-07-12 23:11:42 +01:00

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
}