Skip to content
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.

Commit

Permalink
Move libs out of lib folder
Browse files Browse the repository at this point in the history
  • Loading branch information
yngvark committed Feb 8, 2022
1 parent 2bf0d3e commit 948ade8
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions upgrades/0.0.89.rotate-argocd-ssh-key/context.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package main

import (
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/lib/cmdflags"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/lib/logger"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/cmdflags"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/logger"
)

type Context struct {
Expand Down
4 changes: 2 additions & 2 deletions upgrades/0.0.89.rotate-argocd-ssh-key/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"errors"
"fmt"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/lib/cmdflags"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/lib/commonerrors"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/cmdflags"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/commonerrors"
"github.com/spf13/cobra"
"os"
"path/filepath"
Expand Down
6 changes: 3 additions & 3 deletions upgrades/0.0.89.rotate-argocd-ssh-key/pkg/rotatesshkey/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package rotatesshkey
import (
"context"
"fmt"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/lib/cmdflags"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/lib/logger"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/lib/okctlimport"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/cmdflags"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/logger"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/okctlimport"
"github.com/oslokommune/okctl/pkg/api"
"github.com/oslokommune/okctl/pkg/api/core"
awsProvider "github.com/oslokommune/okctl/pkg/api/core/cloudprovider/aws"
Expand Down
2 changes: 1 addition & 1 deletion upgrades/0.0.89.rotate-argocd-ssh-key/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/lib/cmdflags"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/cmdflags"
"github.com/oslokommune/okctl-upgrade/upgrades/0.0.89.rotate-argocd-ssh-key/pkg/rotatesshkey"
)

Expand Down

0 comments on commit 948ade8

Please sign in to comment.