11 lines
202 B
Go
11 lines
202 B
Go
|
|
package svc
|
||
|
|
|
||
|
|
import (
|
||
|
|
"chat/internal/config"
|
||
|
|
"chat/internal/library/centrifugo"
|
||
|
|
)
|
||
|
|
|
||
|
|
func initCentrifugo(c config.CentrifugoConf) *centrifugo.Client {
|
||
|
|
return centrifugo.NewClient(c.APIURL, c.APIKey)
|
||
|
|
}
|