Skip to content

Commit b440405

Browse files
committed
fix: update module paths to monorepo structure
1 parent e702514 commit b440405

21 files changed

Lines changed: 62 additions & 62 deletions

File tree

cli/cmd/enveil/daemon.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"strconv"
99
"syscall"
1010

11-
"github.com/MaximoCoder/enveil-core/config"
12-
"github.com/MaximoCoder/enveil-cli/internal/daemon"
13-
"github.com/MaximoCoder/enveil-cli/internal/ui"
14-
"github.com/MaximoCoder/enveil-core/vault"
11+
"github.com/MaximoCoder/Enveil/core/config"
12+
"github.com/MaximoCoder/Enveil/cli/internal/daemon"
13+
"github.com/MaximoCoder/Enveil/cli/internal/ui"
14+
"github.com/MaximoCoder/Enveil/core/vault"
1515
"github.com/spf13/cobra"
1616
)
1717

cli/cmd/enveil/delete.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/MaximoCoder/enveil-cli/internal/serverclient"
8-
"github.com/MaximoCoder/enveil-cli/internal/ui"
9-
"github.com/MaximoCoder/enveil-core/config"
10-
"github.com/MaximoCoder/enveil-core/vault"
7+
"github.com/MaximoCoder/Enveil/cli/internal/serverclient"
8+
"github.com/MaximoCoder/Enveil/cli/internal/ui"
9+
"github.com/MaximoCoder/Enveil/core/config"
10+
"github.com/MaximoCoder/Enveil/core/vault"
1111
"github.com/spf13/cobra"
1212
)
1313

cli/cmd/enveil/diff.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/MaximoCoder/enveil-cli/internal/serverclient"
7-
"github.com/MaximoCoder/enveil-cli/internal/ui"
8-
"github.com/MaximoCoder/enveil-core/config"
9-
"github.com/MaximoCoder/enveil-core/vault"
6+
"github.com/MaximoCoder/Enveil/cli/internal/serverclient"
7+
"github.com/MaximoCoder/Enveil/cli/internal/ui"
8+
"github.com/MaximoCoder/Enveil/core/config"
9+
"github.com/MaximoCoder/Enveil/core/vault"
1010
"github.com/fatih/color"
1111
"github.com/spf13/cobra"
1212
)

cli/cmd/enveil/env.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/MaximoCoder/enveil-cli/internal/serverclient"
7-
"github.com/MaximoCoder/enveil-cli/internal/ui"
8-
"github.com/MaximoCoder/enveil-core/config"
9-
"github.com/MaximoCoder/enveil-core/vault"
6+
"github.com/MaximoCoder/Enveil/cli/internal/serverclient"
7+
"github.com/MaximoCoder/Enveil/cli/internal/ui"
8+
"github.com/MaximoCoder/Enveil/core/config"
9+
"github.com/MaximoCoder/Enveil/core/vault"
1010
"github.com/spf13/cobra"
1111
)
1212

cli/cmd/enveil/export.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66
"path/filepath"
77
"strings"
88

9-
"github.com/MaximoCoder/enveil-cli/internal/serverclient"
10-
"github.com/MaximoCoder/enveil-cli/internal/ui"
11-
"github.com/MaximoCoder/enveil-core/config"
12-
"github.com/MaximoCoder/enveil-core/vault"
9+
"github.com/MaximoCoder/Enveil/cli/internal/serverclient"
10+
"github.com/MaximoCoder/Enveil/cli/internal/ui"
11+
"github.com/MaximoCoder/Enveil/core/config"
12+
"github.com/MaximoCoder/Enveil/core/vault"
1313
"github.com/spf13/cobra"
1414
)
1515

cli/cmd/enveil/get.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/MaximoCoder/enveil-cli/internal/serverclient"
8-
"github.com/MaximoCoder/enveil-core/config"
9-
"github.com/MaximoCoder/enveil-core/vault"
7+
"github.com/MaximoCoder/Enveil/cli/internal/serverclient"
8+
"github.com/MaximoCoder/Enveil/core/config"
9+
"github.com/MaximoCoder/Enveil/core/vault"
1010
"github.com/spf13/cobra"
1111
)
1212

cli/cmd/enveil/hook.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"path/filepath"
88
"strings"
99

10-
"github.com/MaximoCoder/enveil-core/detector"
11-
"github.com/MaximoCoder/enveil-cli/internal/ui"
10+
"github.com/MaximoCoder/Enveil/core/detector"
11+
"github.com/MaximoCoder/Enveil/cli/internal/ui"
1212
"github.com/spf13/cobra"
1313
)
1414

cli/cmd/enveil/import.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66
"os"
77
"strings"
88

9-
"github.com/MaximoCoder/enveil-cli/internal/serverclient"
10-
"github.com/MaximoCoder/enveil-cli/internal/ui"
11-
"github.com/MaximoCoder/enveil-core/config"
12-
"github.com/MaximoCoder/enveil-core/vault"
9+
"github.com/MaximoCoder/Enveil/cli/internal/serverclient"
10+
"github.com/MaximoCoder/Enveil/cli/internal/ui"
11+
"github.com/MaximoCoder/Enveil/core/config"
12+
"github.com/MaximoCoder/Enveil/core/vault"
1313
"github.com/spf13/cobra"
1414
)
1515

cli/cmd/enveil/init.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import (
77
"path/filepath"
88
"syscall"
99

10-
"github.com/MaximoCoder/enveil-cli/internal/daemon"
11-
"github.com/MaximoCoder/enveil-cli/internal/ui"
12-
"github.com/MaximoCoder/enveil-core/config"
13-
"github.com/MaximoCoder/enveil-core/crypto"
14-
"github.com/MaximoCoder/enveil-core/vault"
10+
"github.com/MaximoCoder/Enveil/cli/internal/daemon"
11+
"github.com/MaximoCoder/Enveil/cli/internal/ui"
12+
"github.com/MaximoCoder/Enveil/core/config"
13+
"github.com/MaximoCoder/Enveil/core/crypto"
14+
"github.com/MaximoCoder/Enveil/core/vault"
1515
"github.com/spf13/cobra"
1616
"golang.org/x/term"
1717
)

cli/cmd/enveil/list.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"fmt"
55
"sort"
66

7-
"github.com/MaximoCoder/enveil-cli/internal/serverclient"
8-
"github.com/MaximoCoder/enveil-cli/internal/ui"
9-
"github.com/MaximoCoder/enveil-core/config"
10-
"github.com/MaximoCoder/enveil-core/vault"
7+
"github.com/MaximoCoder/Enveil/cli/internal/serverclient"
8+
"github.com/MaximoCoder/Enveil/cli/internal/ui"
9+
"github.com/MaximoCoder/Enveil/core/config"
10+
"github.com/MaximoCoder/Enveil/core/vault"
1111
"github.com/spf13/cobra"
1212
)
1313

0 commit comments

Comments
 (0)