Run goimports across the repository (#6010)

The result will still pass gofmtcheck and won't trigger additional
changes if someone isn't using goimports, but it will avoid the
piecemeal imports changes we've been seeing.
This commit is contained in:
Jim Kalafut
2019-01-08 16:48:57 -08:00
committed by Brian Kassouf
parent 60be74108b
commit a54603039d
155 changed files with 198 additions and 189 deletions

View File

@@ -13,7 +13,7 @@ import (
"github.com/hashicorp/vault/helper/consts"
"github.com/hashicorp/vault/logical"
"github.com/hashicorp/vault/logical/framework"
"github.com/patrickmn/go-cache"
cache "github.com/patrickmn/go-cache"
)
func Factory(ctx context.Context, conf *logical.BackendConfig) (logical.Backend, error) {