fix import path

This commit is contained in:
Edward 2020-05-04 23:01:38 +08:00
parent dd974af57f
commit 7a5a5685e8
3 changed files with 4 additions and 3 deletions

View File

@ -3,7 +3,7 @@ package main
import ( import (
"fmt" "fmt"
"github.com/jianhan/go-patterns/creational/singleton" "github.com/crazybber/go-patterns/creational/singleton"
) )
func main() { func main() {

View File

@ -1,8 +1,9 @@
package mocklib package mocklib
import ( import (
"github.com/weichou1229/go-patterns/playground/mocklib/mocks"
"testing" "testing"
"github.com/crazybber/go-patterns/playground/mocklib/mocks"
) )
func TestStartRobots(t *testing.T) { func TestStartRobots(t *testing.T) {

View File

@ -1,7 +1,7 @@
package main package main
import ( import (
"github.com/weichou1229/go-patterns/playground/singleton/internal" "github.com/crazybber/go-patterns/playground/singleton/internal"
) )
func main() { func main() {