mirror of https://github.com/ceph/go-ceph
21 lines
528 B
Go
21 lines
528 B
Go
//go:build !(nautilus || octopus) && ceph_preview
|
|
// +build !nautilus,!octopus,ceph_preview
|
|
|
|
package nfs
|
|
|
|
import (
|
|
ccom "github.com/ceph/go-ceph/common/commands"
|
|
)
|
|
|
|
// Admin is used to administer ceph nfs features.
|
|
type Admin struct {
|
|
conn ccom.RadosCommander
|
|
}
|
|
|
|
// NewFromConn creates an new management object from a preexisting
|
|
// rados connection. The existing connection can be rados.Conn or any
|
|
// type implementing the RadosCommander interface.
|
|
func NewFromConn(conn ccom.RadosCommander) *Admin {
|
|
return &Admin{conn}
|
|
}
|