diff --git a/README.md b/README.md index 44eb3c6..0682e96 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ docker run -it --rm --gpus all ubuntu nvidia-smi # Test GPU support ### Installation 1. Clone the repository: ```bash - git clone https://github.com/ITLab-CC/bbb-translation-bot + git clone https://github.com/bigbluebutton-bot/bbb-translation-bot cd bbb-translation-bot ``` diff --git a/client/go.mod b/client/go.mod index 6bfd047..ee3726e 100644 --- a/client/go.mod +++ b/client/go.mod @@ -3,7 +3,7 @@ module client/test go 1.20 require ( - github.com/ITLab-CC/bigbluebutton-bot v0.1.0 + github.com/bigbluebutton-bot/bigbluebutton-bot v0.1.0 github.com/pion/rtp v1.8.2 github.com/pion/webrtc/v3 v3.2.21 github.com/pion/webrtc/v4 v4.0.0-beta.6 diff --git a/client/go.sum b/client/go.sum index ee99a7e..f115b9f 100644 --- a/client/go.sum +++ b/client/go.sum @@ -1,5 +1,5 @@ -github.com/ITLab-CC/bigbluebutton-bot v0.1.0 h1:tHKj9OV1S7S6b5bYnl3TTJgsDC8accS0P+KRdQM+0EA= -github.com/ITLab-CC/bigbluebutton-bot v0.1.0/go.mod h1:DVTwBrR/wFbBJw36jplgbAPtrtsF3ttYFfvxw6aq1/s= +github.com/bigbluebutton-bot/bigbluebutton-bot v0.1.0 h1:tHKj9OV1S7S6b5bYnl3TTJgsDC8accS0P+KRdQM+0EA= +github.com/bigbluebutton-bot/bigbluebutton-bot v0.1.0/go.mod h1:DVTwBrR/wFbBJw36jplgbAPtrtsF3ttYFfvxw6aq1/s= github.com/bigbluebutton-bot/golang-socketio v0.0.0-20230816150715-bbc29a93ec5d h1:YednRCWWnBYIechF05rniPb09n3Y7dm1Kgf7Aad9i+0= github.com/bigbluebutton-bot/golang-socketio v0.0.0-20230816150715-bbc29a93ec5d/go.mod h1:gYG7s8zBJyL7yIpe6w7JY1pY9egOGsr8v2afXLrtIEY= github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= diff --git a/client/main.go b/client/main.go index c431d88..000a247 100644 --- a/client/main.go +++ b/client/main.go @@ -10,11 +10,11 @@ import ( "strings" "time" - api "github.com/ITLab-CC/bigbluebutton-bot/api" + api "github.com/bigbluebutton-bot/bigbluebutton-bot/api" - bot "github.com/ITLab-CC/bigbluebutton-bot" + bot "github.com/bigbluebutton-bot/bigbluebutton-bot" - bbb "github.com/ITLab-CC/bigbluebutton-bot/bbb" + bbb "github.com/bigbluebutton-bot/bigbluebutton-bot/bbb" "github.com/pion/rtp" "github.com/pion/webrtc/v3" @@ -330,8 +330,8 @@ type configChangeSet struct { type configTranscriptionServer struct { ExternalHost string `json:"externalhost"` - PortTCP string `json:"port_tcp"` - Secret string `json:"secret"` + PortTCP string `json:"port_tcp"` + Secret string `json:"secret"` HealthCheckPort string `json:"healthcheckport"` } @@ -368,8 +368,8 @@ func readConfig(file string) config { }, TranscriptionServer: configTranscriptionServer{ ExternalHost: os.Getenv("TRANSCRIPTION_SERVER_EXTERNAL_HOST"), - PortTCP: os.Getenv("TRANSCRIPTION_SERVER_PORT_TCP"), - Secret: os.Getenv("TRANSCRIPTION_SERVER_SECRET"), + PortTCP: os.Getenv("TRANSCRIPTION_SERVER_PORT_TCP"), + Secret: os.Getenv("TRANSCRIPTION_SERVER_SECRET"), HealthCheckPort: os.Getenv("TRANSCRIPTION_SERVER_HEALTHCHECK_PORT"), }, TranslationServer: configTranslationServer{