Skip to content

Commit 4def3fb

Browse files
authored
chore: rename module (#137)
Signed-off-by: Zike Yang <[email protected]>
1 parent 06f6b3c commit 4def3fb

File tree

27 files changed

+74
-74
lines changed

27 files changed

+74
-74
lines changed

benchmark/bench_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ import (
2020
"context"
2121
"github.com/apache/pulsar-client-go/pulsaradmin"
2222
"github.com/apache/pulsar-client-go/pulsaradmin/pkg/utils"
23-
"github.com/functionstream/functionstream/common"
24-
"github.com/functionstream/functionstream/fs"
25-
"github.com/functionstream/functionstream/fs/contube"
26-
"github.com/functionstream/functionstream/perf"
27-
"github.com/functionstream/functionstream/restclient"
28-
"github.com/functionstream/functionstream/server"
23+
"github.com/functionstream/function-stream/common"
24+
"github.com/functionstream/function-stream/fs"
25+
"github.com/functionstream/function-stream/fs/contube"
26+
"github.com/functionstream/function-stream/perf"
27+
"github.com/functionstream/function-stream/restclient"
28+
"github.com/functionstream/function-stream/server"
2929
"math/rand"
3030
"os"
3131
"runtime/pprof"

cmd/client/cmd.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
package client
1818

1919
import (
20-
c "github.com/functionstream/functionstream/cmd/client/common"
21-
"github.com/functionstream/functionstream/cmd/client/consume"
22-
"github.com/functionstream/functionstream/cmd/client/create"
23-
del "github.com/functionstream/functionstream/cmd/client/delete"
24-
"github.com/functionstream/functionstream/cmd/client/list"
25-
"github.com/functionstream/functionstream/cmd/client/produce"
20+
c "github.com/functionstream/function-stream/cmd/client/common"
21+
"github.com/functionstream/function-stream/cmd/client/consume"
22+
"github.com/functionstream/function-stream/cmd/client/create"
23+
del "github.com/functionstream/function-stream/cmd/client/delete"
24+
"github.com/functionstream/function-stream/cmd/client/list"
25+
"github.com/functionstream/function-stream/cmd/client/produce"
2626
"github.com/spf13/cobra"
2727
)
2828

cmd/client/consume/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package consume
1919
import (
2020
"context"
2121
"fmt"
22-
"github.com/functionstream/functionstream/cmd/client/common"
23-
"github.com/functionstream/functionstream/restclient"
22+
"github.com/functionstream/function-stream/cmd/client/common"
23+
"github.com/functionstream/function-stream/restclient"
2424
"github.com/spf13/cobra"
2525
"os"
2626
)

cmd/client/create/cmd.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ package create
1919
import (
2020
"context"
2121
"fmt"
22-
"github.com/functionstream/functionstream/cmd/client/common"
23-
fs_cmmon "github.com/functionstream/functionstream/common"
24-
"github.com/functionstream/functionstream/restclient"
22+
"github.com/functionstream/function-stream/cmd/client/common"
23+
fs_cmmon "github.com/functionstream/function-stream/common"
24+
"github.com/functionstream/function-stream/restclient"
2525
"github.com/spf13/cobra"
2626
"io"
2727
"os"

cmd/client/delete/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package del
1919
import (
2020
"context"
2121
"fmt"
22-
"github.com/functionstream/functionstream/cmd/client/common"
23-
"github.com/functionstream/functionstream/restclient"
22+
"github.com/functionstream/function-stream/cmd/client/common"
23+
"github.com/functionstream/function-stream/restclient"
2424
"github.com/spf13/cobra"
2525
"os"
2626
)

cmd/client/list/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package list
1919
import (
2020
"context"
2121
"fmt"
22-
"github.com/functionstream/functionstream/cmd/client/common"
23-
"github.com/functionstream/functionstream/restclient"
22+
"github.com/functionstream/function-stream/cmd/client/common"
23+
"github.com/functionstream/function-stream/restclient"
2424
"github.com/spf13/cobra"
2525
"os"
2626
)

cmd/client/produce/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package produce
1919
import (
2020
"context"
2121
"fmt"
22-
"github.com/functionstream/functionstream/cmd/client/common"
23-
"github.com/functionstream/functionstream/restclient"
22+
"github.com/functionstream/function-stream/cmd/client/common"
23+
"github.com/functionstream/function-stream/restclient"
2424
"github.com/spf13/cobra"
2525
"os"
2626
)

cmd/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ package main
1818

1919
import (
2020
"fmt"
21-
"github.com/functionstream/functionstream/cmd/client"
22-
"github.com/functionstream/functionstream/cmd/perf"
23-
"github.com/functionstream/functionstream/cmd/server"
24-
"github.com/functionstream/functionstream/cmd/standalone"
21+
"github.com/functionstream/function-stream/cmd/client"
22+
"github.com/functionstream/function-stream/cmd/perf"
23+
"github.com/functionstream/function-stream/cmd/server"
24+
"github.com/functionstream/function-stream/cmd/standalone"
2525
"github.com/spf13/cobra"
2626
"os"
2727
)

cmd/perf/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ package perf
1818

1919
import (
2020
"context"
21-
"github.com/functionstream/functionstream/common"
22-
"github.com/functionstream/functionstream/perf"
21+
"github.com/functionstream/function-stream/common"
22+
"github.com/functionstream/function-stream/perf"
2323
"github.com/spf13/cobra"
2424
"io"
2525
)

cmd/server/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ package server
1818

1919
import (
2020
"context"
21-
"github.com/functionstream/functionstream/common"
22-
"github.com/functionstream/functionstream/server"
21+
"github.com/functionstream/function-stream/common"
22+
"github.com/functionstream/function-stream/server"
2323
"github.com/spf13/cobra"
2424
"io"
2525
)

0 commit comments

Comments
 (0)