1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2025-06-30 05:31:07 +02:00

Update package text with Quality structure

This commit is contained in:
Alexandre Iooss
2020-10-19 19:52:24 +02:00
parent 34200afaed
commit d03d4fed40
2 changed files with 31 additions and 32 deletions

View File

@ -2,7 +2,7 @@
package transcoder
import (
"gitlab.crans.org/nounous/ghostream/stream"
"gitlab.crans.org/nounous/ghostream/messaging"
"gitlab.crans.org/nounous/ghostream/transcoder/text"
)
@ -12,6 +12,6 @@ type Options struct {
}
// Init all transcoders
func Init(streams map[string]*stream.Stream, cfg *Options) {
func Init(streams *messaging.Streams, cfg *Options) {
go text.Init(streams, &cfg.Text)
}