Files
streamctl/pkg/streamplayer/types.go
2024-08-04 02:29:52 +01:00

16 lines
306 B
Go

package streamplayer
import (
"github.com/xaionaro-go/streamctl/pkg/streamplayer/types"
)
type Config = types.Config
type Option = types.Option
type Options = types.Options
type FuncNotifyStart = types.FuncNotifyStart
type CtxKey = types.CtxKey
const (
CtxKeyStreamPlayer = types.CtxKeyStreamPlayer
)