mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
5b7b5f1e3a
This commit updates the go-ceph to latest release. More details about release at https://github.com/ceph/go-ceph/releases/tag/v0.10.0 Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
25 lines
620 B
Go
25 lines
620 B
Go
// +build !luminous,!mimic
|
|
|
|
package admin
|
|
|
|
import (
|
|
"github.com/ceph/go-ceph/internal/commands"
|
|
)
|
|
|
|
var (
|
|
// ErrStatusNotEmpty is an alias for commands.ErrStatusNotEmpty
|
|
ErrStatusNotEmpty = commands.ErrStatusNotEmpty
|
|
// ErrBodyNotEmpty is an alias for commands.ErrBodyNotEmpty
|
|
ErrBodyNotEmpty = commands.ErrBodyNotEmpty
|
|
)
|
|
|
|
type response = commands.Response
|
|
|
|
// NotImplementedError is an alias for commands.NotImplementedError.
|
|
type NotImplementedError = commands.NotImplementedError
|
|
|
|
// newResponse returns a response.
|
|
func newResponse(b []byte, s string, e error) response {
|
|
return commands.NewResponse(b, s, e)
|
|
}
|