1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2024-12-22 19:42:20 +00:00
ghostream/transcoder/transcoder.go
2020-10-19 19:52:24 +02:00

18 lines
378 B
Go

// Package transcoder manages transcoders
package transcoder
import (
"gitlab.crans.org/nounous/ghostream/messaging"
"gitlab.crans.org/nounous/ghostream/transcoder/text"
)
// Options holds text package configuration
type Options struct {
Text text.Options
}
// Init all transcoders
func Init(streams *messaging.Streams, cfg *Options) {
go text.Init(streams, &cfg.Text)
}