Skip to content

Commit

Permalink
🚚 Move to github org bigbluebutton-bot
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianKropp committed Nov 14, 2023
1 parent ce3daf6 commit ea9d4ea
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion client/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions client/go.sum
Original file line number Diff line number Diff line change
@@ -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=
Expand Down
14 changes: 7 additions & 7 deletions client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"`
}

Expand Down Expand Up @@ -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{
Expand Down

0 comments on commit ea9d4ea

Please sign in to comment.