diff --git a/main/main.go b/main/main.go index 47b6fd9..6a90d89 100644 --- a/main/main.go +++ b/main/main.go @@ -1,7 +1,7 @@ package main import ( - . "github.com/go-func/stream" + . "github.com/ZaneYork/go-func/stream" ) // func NewStopWatch() func() time.Duration { diff --git a/stream/collectors/groupingBy.go b/stream/collectors/groupingBy.go index 8dc65a2..038bd6c 100644 --- a/stream/collectors/groupingBy.go +++ b/stream/collectors/groupingBy.go @@ -1,6 +1,6 @@ package collectors -import . "github.com/go-func/stream" +import . "github.com/ZaneYork/go-func/stream" // GroupingBy 按照指定的规则分组 type GroupingBy struct { diff --git a/stream/collectors/partitioningBy.go b/stream/collectors/partitioningBy.go index 4689225..8e850bd 100644 --- a/stream/collectors/partitioningBy.go +++ b/stream/collectors/partitioningBy.go @@ -1,6 +1,6 @@ package collectors -import . "github.com/go-func/stream" +import . "github.com/ZaneYork/go-func/stream" // PartitioningBy 按照指定的分区 type PartitioningBy struct {