Make new stream function public

This commit is contained in:
Alexey Khit
2022-08-18 22:44:38 +03:00
parent 77c4590170
commit 69d45c3216
3 changed files with 4 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ func Init() {
log = app.GetLogger("streams")
for name, item := range cfg.Mod {
Streams[name] = newStream(item)
Streams[name] = NewStream(item)
}
}