Skip to content

Commit

Permalink
rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyeyuran committed Oct 15, 2020
1 parent f8056af commit 044a9b1
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion channel.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"sync/atomic"
"time"

"github.com/jiyeyuran/mediasoup/netstring"
"github.com/jiyeyuran/mediasoup-go/netstring"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion examples/app/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"encoding/json"

"github.com/jiyeyuran/mediasoup"
"github.com/jiyeyuran/mediasoup-go"
)

var logger = mediasoup.NewLogger("ExampleApp")
Expand Down
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
module github.com/jiyeyuran/mediasoup
module github.com/jiyeyuran/mediasoup-go

go 1.15

require (
github.com/gobwas/glob v0.2.3
github.com/imdario/mergo v0.3.11
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a
github.com/jiyeyuran/mediasoup-go v0.0.0-20190428033853-aee6cd19f58c
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/rs/zerolog v1.20.0
github.com/satori/go.uuid v1.2.0
github.com/sirupsen/logrus v1.7.0
github.com/stretchr/objx v0.1.1 // indirect
github.com/stretchr/testify v1.6.1
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
)
2 changes: 1 addition & 1 deletion ortc.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/imdario/mergo"
"github.com/jinzhu/copier"
"github.com/jiyeyuran/mediasoup/h264"
"github.com/jiyeyuran/mediasoup-go/h264"
)

var DYNAMIC_PAYLOAD_TYPES = [...]byte{
Expand Down
2 changes: 1 addition & 1 deletion payload_channel.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync/atomic"
"time"

"github.com/jiyeyuran/mediasoup/netstring"
"github.com/jiyeyuran/mediasoup-go/netstring"
)

type notification struct {
Expand Down
2 changes: 1 addition & 1 deletion rtp_parameters.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package mediasoup
import (
"strings"

"github.com/jiyeyuran/mediasoup/h264"
"github.com/jiyeyuran/mediasoup-go/h264"
)

/**
Expand Down
2 changes: 1 addition & 1 deletion supported_rtp_capabilities.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package mediasoup

import (
"github.com/jiyeyuran/mediasoup/h264"
"github.com/jiyeyuran/mediasoup-go/h264"
)

var supportedRtpCapabilities = RtpCapabilities{
Expand Down

0 comments on commit 044a9b1

Please sign in to comment.