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

Commit

Permalink
Update to use lowercase logrus import
Browse files Browse the repository at this point in the history
  • Loading branch information
James Munnelly committed Jan 31, 2018
1 parent 69f5477 commit 4e73f09
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
24 changes: 12 additions & 12 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,43 +51,43 @@



[[dependencies]]
[[constraint]]
branch = "master"
name = "cloud.google.com/go"

[[dependencies]]
name = "github.com/Sirupsen/logrus"
[[constraint]]
name = "github.com/sirupsen/logrus"

[[dependencies]]
[[constraint]]
name = "github.com/fatih/structs"
version = "^1.0.0"

[[dependencies]]
[[constraint]]
branch = "master"
name = "github.com/hashicorp/go-cleanhttp"

[[dependencies]]
[[constraint]]
branch = "master"
name = "github.com/hashicorp/go-multierror"

[[dependencies]]
[[constraint]]
branch = "master"
name = "github.com/hashicorp/go-rootcerts"

[[dependencies]]
[[constraint]]
branch = "master"
name = "github.com/hashicorp/vault"

[[dependencies]]
[[constraint]]
branch = "master"
name = "github.com/sethgrid/pester"

[[dependencies]]
[[constraint]]
name = "github.com/spf13/cobra"

[[dependencies]]
[[constraint]]
name = "golang.org/x/oauth2"

[[dependencies]]
[[constraint]]
branch = "master"
name = "google.golang.org/api"
2 changes: 1 addition & 1 deletion cmd/init.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cmd

import (
"github.com/Sirupsen/logrus"
"github.com/hashicorp/vault/api"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"github.com/jetstack/vault-unsealer/pkg/vault"
Expand Down
4 changes: 2 additions & 2 deletions cmd/unseal.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package cmd
import (
"time"

"github.com/Sirupsen/logrus"
"github.com/hashicorp/vault/api"
"github.com/spf13/cobra"
"github.com/jetstack/vault-unsealer/pkg/vault"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)

const cfgUnsealPeriod = "unseal-period"
Expand Down
2 changes: 1 addition & 1 deletion pkg/vault/vault.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"time"

"github.com/Sirupsen/logrus"
"github.com/hashicorp/vault/api"
"github.com/sirupsen/logrus"

"github.com/jetstack/vault-unsealer/pkg/kv"
)
Expand Down

0 comments on commit 4e73f09

Please sign in to comment.