Skip to content

Commit 50ee49f

Browse files
committed
Fix bad import paths
1 parent 0613b04 commit 50ee49f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

cmd/randoom/archive.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"path/filepath"
88
"strings"
99

10-
wadio "github.com/johnsto/go-randoom/pkg/wad"
10+
wadio "github.com/johnsto/randoom/pkg/wad"
1111
"github.com/pkg/errors"
1212
)
1313

cmd/randoom/exec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strconv"
88
"strings"
99

10-
wadio "github.com/johnsto/go-randoom/pkg/wad"
10+
wadio "github.com/johnsto/randoom/pkg/wad"
1111
"github.com/pkg/errors"
1212
)
1313

cmd/randoom/idgames.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"os"
1010
"path"
1111

12-
"github.com/johnsto/go-randoom/pkg/idgames"
13-
wadio "github.com/johnsto/go-randoom/pkg/wad"
12+
"github.com/johnsto/randoom/pkg/idgames"
13+
wadio "github.com/johnsto/randoom/pkg/wad"
1414
"github.com/pkg/errors"
1515
)
1616

cmd/randoom/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"strings"
1010
"time"
1111

12-
"github.com/johnsto/go-randoom/pkg/idgames"
13-
wadio "github.com/johnsto/go-randoom/pkg/wad"
12+
"github.com/johnsto/randoom/pkg/idgames"
13+
wadio "github.com/johnsto/randoom/pkg/wad"
1414
"github.com/pkg/errors"
1515
)
1616

pkg/wad/maps_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package wad_test
22

3-
import . "github.com/johnsto/go-randoom/pkg/wad"
3+
import . "github.com/johnsto/randoom/pkg/wad"
44
import "testing"
55

66
func TestIsMapName(t *testing.T) {

0 commit comments

Comments
 (0)