diff --git a/cmd/powerproto/main.go b/cmd/powerproto/main.go index 02fbb4d..ba0e5ee 100644 --- a/cmd/powerproto/main.go +++ b/cmd/powerproto/main.go @@ -19,11 +19,11 @@ import ( "github.com/spf13/cobra" - cmdbuild "github.com/storyicon/powerproto/cmd/powerproto/subcommands/build" - cmdenv "github.com/storyicon/powerproto/cmd/powerproto/subcommands/env" - cmdinit "github.com/storyicon/powerproto/cmd/powerproto/subcommands/init" - cmdtidy "github.com/storyicon/powerproto/cmd/powerproto/subcommands/tidy" - "github.com/storyicon/powerproto/pkg/util/logger" + cmdbuild "github.com/TECHNOFAB11/powerproto/cmd/powerproto/subcommands/build" + cmdenv "github.com/TECHNOFAB11/powerproto/cmd/powerproto/subcommands/env" + cmdinit "github.com/TECHNOFAB11/powerproto/cmd/powerproto/subcommands/init" + cmdtidy "github.com/TECHNOFAB11/powerproto/cmd/powerproto/subcommands/tidy" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // Version is set via build flag -ldflags -X main.Version diff --git a/cmd/powerproto/subcommands/build/command.go b/cmd/powerproto/subcommands/build/command.go index 3f6f01e..acb2f57 100644 --- a/cmd/powerproto/subcommands/build/command.go +++ b/cmd/powerproto/subcommands/build/command.go @@ -22,10 +22,10 @@ import ( "github.com/spf13/cobra" - "github.com/storyicon/powerproto/pkg/bootstraps" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/bootstraps" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) const description = ` diff --git a/cmd/powerproto/subcommands/env/command.go b/cmd/powerproto/subcommands/env/command.go index e6162e5..dd3544b 100644 --- a/cmd/powerproto/subcommands/env/command.go +++ b/cmd/powerproto/subcommands/env/command.go @@ -20,8 +20,8 @@ import ( "github.com/spf13/cobra" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // CommandEnv is used to print environment variables related to program operation diff --git a/cmd/powerproto/subcommands/init/command.go b/cmd/powerproto/subcommands/init/command.go index 50523bd..4212709 100644 --- a/cmd/powerproto/subcommands/init/command.go +++ b/cmd/powerproto/subcommands/init/command.go @@ -18,10 +18,10 @@ import ( "github.com/AlecAivazis/survey/v2" "github.com/spf13/cobra" - "github.com/storyicon/powerproto/pkg/configs" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/configs" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // UserPreference defines the model of user preference diff --git a/cmd/powerproto/subcommands/tidy/command.go b/cmd/powerproto/subcommands/tidy/command.go index 6a0eb2b..cfa138d 100644 --- a/cmd/powerproto/subcommands/tidy/command.go +++ b/cmd/powerproto/subcommands/tidy/command.go @@ -22,13 +22,13 @@ import ( "github.com/spf13/cobra" - "github.com/storyicon/powerproto/pkg/bootstraps" - "github.com/storyicon/powerproto/pkg/component/pluginmanager" - "github.com/storyicon/powerproto/pkg/configs" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/logger" - "github.com/storyicon/powerproto/pkg/util/progressbar" + "github.com/TECHNOFAB11/powerproto/pkg/bootstraps" + "github.com/TECHNOFAB11/powerproto/pkg/component/pluginmanager" + "github.com/TECHNOFAB11/powerproto/pkg/configs" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/util/progressbar" ) func tidy(ctx context.Context, diff --git a/go.mod b/go.mod index 3be6f3a..2540846 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/storyicon/powerproto +module github.com/TECHNOFAB11/powerproto go 1.16 diff --git a/pkg/bootstraps/build.go b/pkg/bootstraps/build.go index 1d5b1da..7df0bf3 100644 --- a/pkg/bootstraps/build.go +++ b/pkg/bootstraps/build.go @@ -20,16 +20,16 @@ import ( "github.com/pkg/errors" - "github.com/storyicon/powerproto/pkg/component/actionmanager" - "github.com/storyicon/powerproto/pkg/component/compilermanager" - "github.com/storyicon/powerproto/pkg/component/configmanager" - "github.com/storyicon/powerproto/pkg/component/pluginmanager" - "github.com/storyicon/powerproto/pkg/configs" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/concurrent" - "github.com/storyicon/powerproto/pkg/util/logger" - "github.com/storyicon/powerproto/pkg/util/progressbar" + "github.com/TECHNOFAB11/powerproto/pkg/component/actionmanager" + "github.com/TECHNOFAB11/powerproto/pkg/component/compilermanager" + "github.com/TECHNOFAB11/powerproto/pkg/component/configmanager" + "github.com/TECHNOFAB11/powerproto/pkg/component/pluginmanager" + "github.com/TECHNOFAB11/powerproto/pkg/configs" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/concurrent" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/util/progressbar" ) // StepLookUpConfigs is used to lookup config files according to target proto files diff --git a/pkg/bootstraps/tidy.go b/pkg/bootstraps/tidy.go index f27acd6..cd77a73 100644 --- a/pkg/bootstraps/tidy.go +++ b/pkg/bootstraps/tidy.go @@ -19,13 +19,13 @@ import ( "github.com/pkg/errors" - "github.com/storyicon/powerproto/pkg/component/configmanager" - "github.com/storyicon/powerproto/pkg/component/pluginmanager" - "github.com/storyicon/powerproto/pkg/configs" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/logger" - "github.com/storyicon/powerproto/pkg/util/progressbar" + "github.com/TECHNOFAB11/powerproto/pkg/component/configmanager" + "github.com/TECHNOFAB11/powerproto/pkg/component/pluginmanager" + "github.com/TECHNOFAB11/powerproto/pkg/configs" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/util/progressbar" ) // StepTidyConfig is used to tidy configs by proto file targets diff --git a/pkg/component/actionmanager/actions/actions.go b/pkg/component/actionmanager/actions/actions.go index 3d625a0..ff40c10 100644 --- a/pkg/component/actionmanager/actions/actions.go +++ b/pkg/component/actionmanager/actions/actions.go @@ -17,7 +17,7 @@ package actions import ( "context" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // CommonOptions is common options of action diff --git a/pkg/component/actionmanager/actions/copy.go b/pkg/component/actionmanager/actions/copy.go index 152db5d..056db59 100644 --- a/pkg/component/actionmanager/actions/copy.go +++ b/pkg/component/actionmanager/actions/copy.go @@ -20,14 +20,15 @@ import ( "github.com/pkg/errors" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // ActionCopy is used to copy directory or file from src to dest // Its args prototype is: -// args: (src string, dest string) +// +// args: (src string, dest string) func ActionCopy(ctx context.Context, log logger.Logger, args []string, options *CommonOptions) error { if len(args) != 2 || util.ContainsEmpty(args...) { return errors.Errorf("expected length of args is 3, but received %d", len(args)) diff --git a/pkg/component/actionmanager/actions/move.go b/pkg/component/actionmanager/actions/move.go index 06fae63..b1767a2 100644 --- a/pkg/component/actionmanager/actions/move.go +++ b/pkg/component/actionmanager/actions/move.go @@ -21,14 +21,15 @@ import ( "github.com/pkg/errors" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // ActionMove is used to move directory or file from src to dest // Its args prototype is: -// args: (src string, dest string) +// +// args: (src string, dest string) func ActionMove(ctx context.Context, log logger.Logger, args []string, options *CommonOptions) error { if len(args) != 2 || util.ContainsEmpty(args...) { return errors.Errorf("expected length of args is 3, but received %d", len(args)) diff --git a/pkg/component/actionmanager/actions/remove.go b/pkg/component/actionmanager/actions/remove.go index 7f7886d..86e9cf5 100644 --- a/pkg/component/actionmanager/actions/remove.go +++ b/pkg/component/actionmanager/actions/remove.go @@ -21,13 +21,14 @@ import ( "github.com/pkg/errors" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // ActionRemove is used to delete directories or files // Its args prototype is: -// args: (path ...string) +// +// args: (path ...string) func ActionRemove(ctx context.Context, log logger.Logger, args []string, options *CommonOptions) error { for _, arg := range args { if filepath.IsAbs(arg) { diff --git a/pkg/component/actionmanager/actions/replace.go b/pkg/component/actionmanager/actions/replace.go index 0e4d821..47d0350 100644 --- a/pkg/component/actionmanager/actions/replace.go +++ b/pkg/component/actionmanager/actions/replace.go @@ -23,14 +23,16 @@ import ( "github.com/pkg/errors" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // ActionReplace is used to replace text in bulk // Its args prototype is: -// args: (pattern string, from string, to string) +// +// args: (pattern string, from string, to string) +// // pattern is used to match files func ActionReplace(ctx context.Context, log logger.Logger, args []string, options *CommonOptions) error { if len(args) != 3 { diff --git a/pkg/component/actionmanager/errors.go b/pkg/component/actionmanager/errors.go index 0ddce5f..a166c40 100644 --- a/pkg/component/actionmanager/errors.go +++ b/pkg/component/actionmanager/errors.go @@ -17,7 +17,7 @@ package actionmanager import ( "fmt" - "github.com/storyicon/powerproto/pkg/util/command" + "github.com/TECHNOFAB11/powerproto/pkg/util/command" ) // ErrPostShell defines the post shell command error diff --git a/pkg/component/actionmanager/manager.go b/pkg/component/actionmanager/manager.go index 1d671d6..7fd3ced 100644 --- a/pkg/component/actionmanager/manager.go +++ b/pkg/component/actionmanager/manager.go @@ -19,10 +19,10 @@ import ( "fmt" "path/filepath" - "github.com/storyicon/powerproto/pkg/component/actionmanager/actions" - "github.com/storyicon/powerproto/pkg/configs" - "github.com/storyicon/powerproto/pkg/util/command" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/component/actionmanager/actions" + "github.com/TECHNOFAB11/powerproto/pkg/configs" + "github.com/TECHNOFAB11/powerproto/pkg/util/command" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // ActionManager is used to manage actions diff --git a/pkg/component/compilermanager/compiler.go b/pkg/component/compilermanager/compiler.go index 5046f4c..97c3490 100644 --- a/pkg/component/compilermanager/compiler.go +++ b/pkg/component/compilermanager/compiler.go @@ -21,12 +21,12 @@ import ( "github.com/pkg/errors" - "github.com/storyicon/powerproto/pkg/component/pluginmanager" - "github.com/storyicon/powerproto/pkg/configs" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/command" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/component/pluginmanager" + "github.com/TECHNOFAB11/powerproto/pkg/configs" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/command" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // Compiler is used to compile proto file @@ -99,7 +99,7 @@ func (b *BasicCompiler) GetConfig(ctx context.Context) configs.ConfigItem { } func (b *BasicCompiler) calcProtocPath(ctx context.Context) (string, error) { - return b.pluginManager.GetPathForProtoc(ctx, b.config.Config().Protoc) + return b.pluginManager.GetPathForProtoc(ctx, b.config.Config().Protoc) } func (b *BasicCompiler) calcDir() string { diff --git a/pkg/component/compilermanager/errors.go b/pkg/component/compilermanager/errors.go index 0bd6a67..00ae365 100644 --- a/pkg/component/compilermanager/errors.go +++ b/pkg/component/compilermanager/errors.go @@ -15,7 +15,7 @@ package compilermanager import ( - "github.com/storyicon/powerproto/pkg/util/command" + "github.com/TECHNOFAB11/powerproto/pkg/util/command" ) // ErrCompile defines the compile error diff --git a/pkg/component/compilermanager/manager.go b/pkg/component/compilermanager/manager.go index 812c4cb..cdf07d0 100644 --- a/pkg/component/compilermanager/manager.go +++ b/pkg/component/compilermanager/manager.go @@ -18,9 +18,9 @@ import ( "context" "sync" - "github.com/storyicon/powerproto/pkg/component/configmanager" - "github.com/storyicon/powerproto/pkg/component/pluginmanager" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/component/configmanager" + "github.com/TECHNOFAB11/powerproto/pkg/component/pluginmanager" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // CompilerManager is to manage compiler diff --git a/pkg/component/configmanager/manager.go b/pkg/component/configmanager/manager.go index dc77f90..c706e54 100644 --- a/pkg/component/configmanager/manager.go +++ b/pkg/component/configmanager/manager.go @@ -23,8 +23,8 @@ import ( "github.com/pkg/errors" - "github.com/storyicon/powerproto/pkg/configs" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/configs" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // ConfigManager is used to manage config diff --git a/pkg/component/pluginmanager/errors.go b/pkg/component/pluginmanager/errors.go index d49369f..2be8bf4 100644 --- a/pkg/component/pluginmanager/errors.go +++ b/pkg/component/pluginmanager/errors.go @@ -17,7 +17,7 @@ package pluginmanager import ( "fmt" - "github.com/storyicon/powerproto/pkg/util/command" + "github.com/TECHNOFAB11/powerproto/pkg/util/command" ) // ErrGoInstall defines the go install error diff --git a/pkg/component/pluginmanager/git.go b/pkg/component/pluginmanager/git.go index 4773297..495d9bd 100644 --- a/pkg/component/pluginmanager/git.go +++ b/pkg/component/pluginmanager/git.go @@ -21,10 +21,10 @@ import ( "path/filepath" "strings" - "github.com/storyicon/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/command" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/util/command" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // ErrGitList defines the git list error diff --git a/pkg/component/pluginmanager/manager.go b/pkg/component/pluginmanager/manager.go index 213fe02..b6b90db 100644 --- a/pkg/component/pluginmanager/manager.go +++ b/pkg/component/pluginmanager/manager.go @@ -22,9 +22,9 @@ import ( "strings" "sync" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // PluginManager is used to manage plugins diff --git a/pkg/component/pluginmanager/paths.go b/pkg/component/pluginmanager/paths.go index f5398d2..4292426 100644 --- a/pkg/component/pluginmanager/paths.go +++ b/pkg/component/pluginmanager/paths.go @@ -22,7 +22,7 @@ import ( "golang.org/x/mod/module" - "github.com/storyicon/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util" ) // PathForInclude is used to get the local directory of include files diff --git a/pkg/component/pluginmanager/plugin.go b/pkg/component/pluginmanager/plugin.go index d2b4804..851742f 100644 --- a/pkg/component/pluginmanager/plugin.go +++ b/pkg/component/pluginmanager/plugin.go @@ -23,9 +23,9 @@ import ( "github.com/hashicorp/go-multierror" jsoniter "github.com/json-iterator/go" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/command" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/command" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // IsPluginInstalled is used to check whether a plugin is installed diff --git a/pkg/component/pluginmanager/pluginmanager_test.go b/pkg/component/pluginmanager/pluginmanager_test.go index d914883..817a5f5 100644 --- a/pkg/component/pluginmanager/pluginmanager_test.go +++ b/pkg/component/pluginmanager/pluginmanager_test.go @@ -21,8 +21,8 @@ import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" - "github.com/storyicon/powerproto/pkg/component/pluginmanager" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/component/pluginmanager" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) var _ = Describe("PluginManager", func() { diff --git a/pkg/component/pluginmanager/protoc.go b/pkg/component/pluginmanager/protoc.go index 139b5c7..a5cbaf8 100644 --- a/pkg/component/pluginmanager/protoc.go +++ b/pkg/component/pluginmanager/protoc.go @@ -28,7 +28,7 @@ import ( "github.com/mholt/archiver" "github.com/pkg/errors" - "github.com/storyicon/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util" ) // ProtocRelease defines the release of protoc diff --git a/pkg/configs/configs.go b/pkg/configs/configs.go index 8e7f7b6..76b3421 100644 --- a/pkg/configs/configs.go +++ b/pkg/configs/configs.go @@ -22,8 +22,8 @@ import ( "gopkg.in/yaml.v3" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" ) // Config defines the config model diff --git a/pkg/consts/consts.go b/pkg/consts/consts.go index ffa2997..91d0767 100644 --- a/pkg/consts/consts.go +++ b/pkg/consts/consts.go @@ -20,17 +20,17 @@ import ( "github.com/fatih/color" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // defines a set of const value const ( // ConfigFileName defines the config file name - ConfigFileName = "powerproto.yaml" + ConfigFileName = "powerproto.yaml" // KeyNamePowerProtocInclude is the key name of powerproto default include KeyNamePowerProtocInclude = "POWERPROTO_INCLUDE" // The default include can be referenced by this key in import paths - KeyPowerProtoInclude = "$" + KeyNamePowerProtocInclude + KeyPowerProtoInclude = "$" + KeyNamePowerProtocInclude KeyNameSourceRelative = "SOURCE_RELATIVE" // KeySourceRelative can be specified in import paths to refer to // the folder where the current proto file is located diff --git a/pkg/util/command/command.go b/pkg/util/command/command.go index 492ebd4..4324d39 100644 --- a/pkg/util/command/command.go +++ b/pkg/util/command/command.go @@ -21,9 +21,9 @@ import ( "os" "os/exec" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // Execute is used to execute commands, return stdout and execute errors diff --git a/pkg/util/command/command_test.go b/pkg/util/command/command_test.go index 0047091..610ce7d 100644 --- a/pkg/util/command/command_test.go +++ b/pkg/util/command/command_test.go @@ -20,7 +20,7 @@ import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" - "github.com/storyicon/powerproto/pkg/util/command" + "github.com/TECHNOFAB11/powerproto/pkg/util/command" ) var _ = Describe("Command", func() { diff --git a/pkg/util/progressbar/progressbar.go b/pkg/util/progressbar/progressbar.go index 7210326..ab31abd 100644 --- a/pkg/util/progressbar/progressbar.go +++ b/pkg/util/progressbar/progressbar.go @@ -22,8 +22,8 @@ import ( "github.com/vbauerster/mpb/v7" "github.com/vbauerster/mpb/v7/decor" - "github.com/storyicon/powerproto/pkg/consts" - "github.com/storyicon/powerproto/pkg/util/logger" + "github.com/TECHNOFAB11/powerproto/pkg/consts" + "github.com/TECHNOFAB11/powerproto/pkg/util/logger" ) // ProgressBar implements a customizable progress bar