go-twitch/eventsub/transport.go

13 lines
171 B
Go
Raw Permalink Normal View History

2024-03-05 12:14:18 -05:00
package eventsub
import (
"go.fifitido.net/twitch/api/eventsub"
)
type Transport interface {
ApiTransport() *eventsub.Transport
Run() error
Close() error
Start()
}