ghostream/transcoder/transcoder.go

18 lines
378 B
Go
Raw Normal View History

2020-10-18 14:14:08 +00:00
// 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)
}