Skip to content

Commit

Permalink
Fix import for v1 of module
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Sep 3, 2022
1 parent 91ba643 commit 166c76d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/makenew/gomodule/v1/pkg"
"github.com/makenew/gomodule/pkg"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/makenew/gomodule/v1
module github.com/makenew/gomodule

go 1.19
2 changes: 1 addition & 1 deletion pkg/todo.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package pkg

import (
"fmt"
"github.com/makenew/gomodule/v1/internal"
"github.com/makenew/gomodule/internal"
)

func PrintMessage() {
Expand Down

0 comments on commit 166c76d

Please sign in to comment.