From d190f66705cfce42d6eaa1baf90c7648515db82a Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Wed, 11 Dec 2024 10:14:35 -0700 Subject: [PATCH] cmd: exported scan and collect commands for external use --- cmd/secrets.go | 2 +- cmd/send.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/secrets.go b/cmd/secrets.go index 2943822..dce885f 100644 --- a/cmd/secrets.go +++ b/cmd/secrets.go @@ -7,7 +7,7 @@ import ( "os" "strings" - "github.com/OpenCHAMI/magellan/pkg/secrets" + "github.com/davidallendj/magellan/pkg/secrets" "github.com/rs/zerolog/log" "github.com/spf13/cobra" "github.com/spf13/viper" diff --git a/cmd/send.go b/cmd/send.go index 52d8222..ca1a0de 100644 --- a/cmd/send.go +++ b/cmd/send.go @@ -7,9 +7,9 @@ import ( "os" "strings" - urlx "github.com/OpenCHAMI/magellan/internal/url" - "github.com/OpenCHAMI/magellan/pkg/auth" - "github.com/OpenCHAMI/magellan/pkg/client" + urlx "github.com/davidallendj/magellan/internal/url" + "github.com/davidallendj/magellan/pkg/auth" + "github.com/davidallendj/magellan/pkg/client" "github.com/rs/zerolog/log" "github.com/spf13/cobra" "gopkg.in/yaml.v3"