mirror of
https://github.com/Monibuca/engine.git
synced 2025-10-04 16:22:41 +08:00
10 lines
112 B
Go
10 lines
112 B
Go
package common
|
|
|
|
import "context"
|
|
|
|
type IStream interface {
|
|
context.Context
|
|
Update() uint32
|
|
AddTrack(Track)
|
|
}
|