package grpc import ( "fmt" "github.com/nspcc-dev/neofs-api-go/rpc/common" ) const methodNameFmt = "%s/%s" func toMethodName(p common.CallMethodInfo) string { return fmt.Sprintf(methodNameFmt, p.Service, p.Name) }