Files
liv/liv.go
Justyer 8e727abe4f tidy
2025-09-09 20:26:47 +08:00

12 lines
140 B
Go

package liv
import (
"context"
)
type Transcoder interface {
Transcode(context.Context, *TranscodeParams) error
}
type VideoFilter any