diff --git a/cmd/olcrtc/main.go b/cmd/olcrtc/main.go index c39eba0..9554343 100644 --- a/cmd/olcrtc/main.go +++ b/cmd/olcrtc/main.go @@ -4,8 +4,8 @@ import ( "flag" "log" - "github.com/zarazaex69/olcrtc/internal/client" - "github.com/zarazaex69/olcrtc/internal/server" + "github.com/openlibrecommunity/olcrtc/internal/client" + "github.com/openlibrecommunity/olcrtc/internal/server" ) func main() { diff --git a/internal/client/client.go b/internal/client/client.go index a738b27..eedcd8f 100644 --- a/internal/client/client.go +++ b/internal/client/client.go @@ -13,9 +13,9 @@ import ( "time" "github.com/pion/webrtc/v4" - "github.com/zarazaex69/olcrtc/internal/crypto" - "github.com/zarazaex69/olcrtc/internal/mux" - "github.com/zarazaex69/olcrtc/internal/telemost" + "github.com/openlibrecommunity/olcrtc/internal/crypto" + "github.com/openlibrecommunity/olcrtc/internal/mux" + "github.com/openlibrecommunity/olcrtc/internal/telemost" ) type Client struct { diff --git a/internal/server/server.go b/internal/server/server.go index 4c355b0..6c0cb2b 100644 --- a/internal/server/server.go +++ b/internal/server/server.go @@ -11,9 +11,9 @@ import ( "time" "github.com/pion/webrtc/v4" - "github.com/zarazaex69/olcrtc/internal/crypto" - "github.com/zarazaex69/olcrtc/internal/mux" - "github.com/zarazaex69/olcrtc/internal/telemost" + "github.com/openlibrecommunity/olcrtc/internal/crypto" + "github.com/openlibrecommunity/olcrtc/internal/mux" + "github.com/openlibrecommunity/olcrtc/internal/telemost" ) type Server struct {