forked from TrueCloudLab/frostfs-api-go
24 lines
293 B
Go
24 lines
293 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
type Protocol uint32
|
||
|
|
||
|
const (
|
||
|
_ Protocol = iota
|
||
|
ProtoGRPC
|
||
|
)
|
||
|
|
||
|
var ErrProtoUnsupported = errors.New("unsupported protocol")
|
||
|
|
||
|
func (p Protocol) String() string {
|
||
|
switch p {
|
||
|
case ProtoGRPC:
|
||
|
return "GRPC"
|
||
|
default:
|
||
|
return "UNKNOWN"
|
||
|
}
|
||
|
}
|