diff options
| author | Christoph Blecker <admin@toph.ca> | 2019-03-20 16:05:59 -0700 |
|---|---|---|
| committer | Christoph Blecker <admin@toph.ca> | 2019-03-20 16:05:59 -0700 |
| commit | a7563126a0a2e607356bb2c17f8a3838542ee5ec (patch) | |
| tree | 69cdc440618a656e52b4bd599f8073946f942b82 | |
| parent | 3b8b7b729959421f81972ae841f632299c049bc2 (diff) | |
Convert to use go modules
| -rw-r--r-- | Gopkg.lock | 24 | ||||
| -rw-r--r-- | Gopkg.toml | 6 | ||||
| -rw-r--r-- | go.mod | 8 | ||||
| -rw-r--r-- | go.sum | 6 |
4 files changed, 14 insertions, 30 deletions
diff --git a/Gopkg.lock b/Gopkg.lock deleted file mode 100644 index 53091521..00000000 --- a/Gopkg.lock +++ /dev/null @@ -1,24 +0,0 @@ -# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. - - -[[projects]] - name = "github.com/client9/misspell" - packages = [ - ".", - "cmd/misspell" - ] - revision = "b90dc15cfd220ecf8bbc9043ecb928cef381f011" - version = "v0.3.4" - -[[projects]] - name = "gopkg.in/yaml.v2" - packages = ["."] - revision = "5420a8b6744d3b0345ab293f6fcba19c978f1183" - version = "v2.2.1" - -[solve-meta] - analyzer-name = "dep" - analyzer-version = 1 - inputs-digest = "15876bcf5bae26a3d8ca6af5a0463be3842912808256ce8818c2f34e0b3859fd" - solver-name = "gps-cdcl" - solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml deleted file mode 100644 index a9c8f5c1..00000000 --- a/Gopkg.toml +++ /dev/null @@ -1,6 +0,0 @@ -required = ["github.com/client9/misspell/cmd/misspell"] - -[prune] - go-tests = true - unused-packages = true - non-go = true @@ -0,0 +1,8 @@ +module k8s.io/community + +go 1.12 + +require ( + github.com/client9/misspell v0.3.4 + gopkg.in/yaml.v2 v2.2.2 +) @@ -0,0 +1,6 @@ +github.com/client9/misspell v0.3.4 h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= |
