go-ceph/go.mod
John Mulligan d4079e3949 cephfs: add path based Statx function implmenting ceph_statx
Add a Statx wrapper for ceph_statx.
Add a type wrapping the statx status info that exposes the various
fields from the C-struct.
Add a type wrapping struct timespec, based on golang's x/sys, for the
time fields in the struct.
Note that the ceph struct is not the same as the linux statx struct.

Signed-off-by: John Mulligan <jmulligan@redhat.com>
2020-05-07 13:44:19 -04:00

10 lines
185 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
golang.org/x/sys v0.0.0-20200501145240-bc7a7d42d5c3
)