13 lines
171 B
Go
13 lines
171 B
Go
|
package eventsub
|
||
|
|
||
|
import (
|
||
|
"go.fifitido.net/twitch/api/eventsub"
|
||
|
)
|
||
|
|
||
|
type Transport interface {
|
||
|
ApiTransport() *eventsub.Transport
|
||
|
Run() error
|
||
|
Close() error
|
||
|
Start()
|
||
|
}
|