Skip to content

Commit

Permalink
🎨 updated package structure
Browse files Browse the repository at this point in the history
  • Loading branch information
shravanshetty1 committed Jul 9, 2021
1 parent d0085db commit 2ae97a6
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cmd/sigrun/kubectl-sigrun.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"log"

cli "github.com/devopstoday11/sigrun/pkg/cli/commands"
"github.com/devopstoday11/sigrun/pkg/cli"
)

func main() {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/devopstoday11/sigrun/pkg/cli/config"
"github.com/devopstoday11/sigrun/pkg/config"
cosignCLI "github.com/sigstore/cosign/cmd/cosign/cli"
"github.com/sigstore/cosign/pkg/cosign"
"github.com/spf13/cobra"
Expand Down
10 changes: 5 additions & 5 deletions pkg/cli/commands/run.go → pkg/cli/run.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package commands
package cli

import (
"github.com/devopstoday11/sigrun/pkg/cli/commands/add"
initCmd "github.com/devopstoday11/sigrun/pkg/cli/commands/init"
"github.com/devopstoday11/sigrun/pkg/cli/commands/sign"
"github.com/devopstoday11/sigrun/pkg/cli/commands/update"
"github.com/devopstoday11/sigrun/pkg/cli/add"
initCmd "github.com/devopstoday11/sigrun/pkg/cli/init"
"github.com/devopstoday11/sigrun/pkg/cli/sign"
"github.com/devopstoday11/sigrun/pkg/cli/update"
"github.com/spf13/cobra"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"strings"

"github.com/devopstoday11/sigrun/pkg/cli/config"
"github.com/devopstoday11/sigrun/pkg/config"

"github.com/pkg/errors"
cosignCLI "github.com/sigstore/cosign/cmd/cosign/cli"
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 2ae97a6

Please sign in to comment.