Skip to content

Commit 27a540b

Browse files
authored
fix go.mod (#61)
* fix go.mod * fix imports
1 parent 2f93b14 commit 27a540b

12 files changed

+22
-22
lines changed

examples/live.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/zencoder/go-dash/mpd"
6+
"github.com/zencoder/go-dash/v3/mpd"
77
)
88

99
func main() {

examples/ondemand.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/zencoder/go-dash/mpd"
6+
"github.com/zencoder/go-dash/v3/mpd"
77
)
88

99
func exampleOndemand() {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/zencoder/go-dash
1+
module github.com/zencoder/go-dash/v3
22

33
go 1.13

helpers/testfixtures/testfixtures.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"testing"
88

9-
"github.com/zencoder/go-dash/helpers/require"
9+
"github.com/zencoder/go-dash/v3/helpers/require"
1010
)
1111

1212
// Load test fixture from path relative to fixtures directory

mpd/duration_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/zencoder/go-dash/helpers/require"
8+
"github.com/zencoder/go-dash/v3/helpers/require"
99
)
1010

1111
func TestDuration(t *testing.T) {

mpd/events_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package mpd
33
import (
44
"testing"
55

6-
"github.com/zencoder/go-dash/helpers/ptrs"
7-
"github.com/zencoder/go-dash/helpers/require"
8-
"github.com/zencoder/go-dash/helpers/testfixtures"
6+
"github.com/zencoder/go-dash/v3/helpers/ptrs"
7+
"github.com/zencoder/go-dash/v3/helpers/require"
8+
"github.com/zencoder/go-dash/v3/helpers/testfixtures"
99
)
1010

1111
const (

mpd/mpd.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99
"time"
1010

11-
. "github.com/zencoder/go-dash/helpers/ptrs"
11+
. "github.com/zencoder/go-dash/v3/helpers/ptrs"
1212
)
1313

1414
// Type definition for DASH profiles

mpd/mpd_read_write_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/zencoder/go-dash/helpers/ptrs"
9-
"github.com/zencoder/go-dash/helpers/require"
10-
"github.com/zencoder/go-dash/helpers/testfixtures"
8+
"github.com/zencoder/go-dash/v3/helpers/ptrs"
9+
"github.com/zencoder/go-dash/v3/helpers/require"
10+
"github.com/zencoder/go-dash/v3/helpers/testfixtures"
1111
)
1212

1313
func TestReadingManifests(t *testing.T) {

mpd/mpd_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"strconv"
77
"testing"
88

9-
. "github.com/zencoder/go-dash/helpers/ptrs"
10-
"github.com/zencoder/go-dash/helpers/require"
11-
"github.com/zencoder/go-dash/helpers/testfixtures"
9+
. "github.com/zencoder/go-dash/v3/helpers/ptrs"
10+
"github.com/zencoder/go-dash/v3/helpers/require"
11+
"github.com/zencoder/go-dash/v3/helpers/testfixtures"
1212
)
1313

1414
const (

mpd/pssh_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package mpd
33
import (
44
"encoding/base64"
55
"encoding/hex"
6-
"github.com/zencoder/go-dash/helpers/require"
6+
"github.com/zencoder/go-dash/v3/helpers/require"
77
"testing"
88
)
99

mpd/segment_list_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package mpd
33
import (
44
"testing"
55

6-
"github.com/zencoder/go-dash/helpers/ptrs"
7-
"github.com/zencoder/go-dash/helpers/require"
8-
"github.com/zencoder/go-dash/helpers/testfixtures"
6+
"github.com/zencoder/go-dash/v3/helpers/ptrs"
7+
"github.com/zencoder/go-dash/v3/helpers/require"
8+
"github.com/zencoder/go-dash/v3/helpers/testfixtures"
99
)
1010

1111
func TestSegmentListSerialization(t *testing.T) {

mpd/segment_timeline_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/zencoder/go-dash/helpers/ptrs"
9-
"github.com/zencoder/go-dash/helpers/require"
10-
"github.com/zencoder/go-dash/helpers/testfixtures"
8+
"github.com/zencoder/go-dash/v3/helpers/ptrs"
9+
"github.com/zencoder/go-dash/v3/helpers/require"
10+
"github.com/zencoder/go-dash/v3/helpers/testfixtures"
1111
)
1212

1313
func TestSegmentTimelineSerialization(t *testing.T) {

0 commit comments

Comments
 (0)