mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2025-04-04 05:33:31 +03:00
fix import path
This commit is contained in:
parent
dd974af57f
commit
7a5a5685e8
3 changed files with 4 additions and 3 deletions
|
@ -3,7 +3,7 @@ package main
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/jianhan/go-patterns/creational/singleton"
|
||||
"github.com/crazybber/go-patterns/creational/singleton"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
package mocklib
|
||||
|
||||
import (
|
||||
"github.com/weichou1229/go-patterns/playground/mocklib/mocks"
|
||||
"testing"
|
||||
|
||||
"github.com/crazybber/go-patterns/playground/mocklib/mocks"
|
||||
)
|
||||
|
||||
func TestStartRobots(t *testing.T) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"github.com/weichou1229/go-patterns/playground/singleton/internal"
|
||||
"github.com/crazybber/go-patterns/playground/singleton/internal"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
Loading…
Add table
Reference in a new issue