mirror of
https://github.com/xaionaro-go/streamctl.git
synced 2025-09-27 03:45:52 +08:00
16 lines
306 B
Go
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
|
|
)
|