mirror of
https://github.com/ceph/go-ceph
synced 2024-12-14 02:15:47 +00:00
7ccc2a2d9b
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>
9 lines
132 B
Modula-2
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
|
|
)
|