Files
engine/common/stream.go
2022-02-06 08:50:17 +08:00

10 lines
112 B
Go

package common
import "context"
type IStream interface {
context.Context
Update() uint32
AddTrack(Track)
}