Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 27a540b

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

File tree

12 files changed

+22
-22
lines changed

12 files changed

+22
-22
lines changed

‎examples/live.go‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 3 additions & 3 deletions
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‎

Lines changed: 1 addition & 1 deletion
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‎

Lines changed: 3 additions & 3 deletions
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‎

Lines changed: 3 additions & 3 deletions
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‎

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /