go-ceph/go.mod
John Mulligan 7ccc2a2d9b go-ceph: publish library as a go module
Establish a go.mod (and go.sum) file such that this library can be
handled as a Go module. This has the added benefit of now being
useful outside of gopath.
I do not believe we need to release to provide/use module support but
we should possibly start considering creating v0 tags soonish.

See also: https://blog.golang.org/publishing-go-modules

Signed-off-by: John Mulligan <jmulligan@redhat.com>
2020-01-27 17:53:38 +01:00

9 lines
132 B
Modula-2

module github.com/ceph/go-ceph
go 1.12
require (
github.com/gofrs/uuid v3.2.0+incompatible
github.com/stretchr/testify v1.4.0
)