diff options
author | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-10-23 21:44:52 -0700 |
---|---|---|
committer | Kiran Kamineni <kiran.k.kamineni@intel.com> | 2018-10-25 14:49:28 -0700 |
commit | ede2e910db50176c9970159cf4f60387d4ee4d93 (patch) | |
tree | 4206a57807ba5fd76de1ed03a33393e90c5b20a2 /sms-service/src/quorumclient/go.mod | |
parent | 53f7913877d40ccfbd766fbe7a765d2a56e9d32a (diff) |
Move to go mod from dep
Go 1.11 introduces a native functionality for package management.
This replaces dep which is the tool we were using before.
This patch switches SMS to use go mod instead
of dep for package management.
P2: Add GO111MODULE=on to the makefile
Issue-ID: AAF-404
Change-Id: I462d210fbbe71bff1310a50993410ebc7d8f6fa8
Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'sms-service/src/quorumclient/go.mod')
-rw-r--r-- | sms-service/src/quorumclient/go.mod | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sms-service/src/quorumclient/go.mod b/sms-service/src/quorumclient/go.mod new file mode 100644 index 0000000..4a077b1 --- /dev/null +++ b/sms-service/src/quorumclient/go.mod @@ -0,0 +1,7 @@ +module quorumclient + +require github.com/hashicorp/go-uuid v0.0.0-20180228145832-27454136f036 + +require sms v0.0.0 + +replace sms => ../sms |