14 lines
239 B
Go
14 lines
239 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/api/rpc/common"
|
||
|
)
|
||
|
|
||
|
const methodNameFmt = "/%s/%s"
|
||
|
|
||
|
func toMethodName(p common.CallMethodInfo) string {
|
||
|
return fmt.Sprintf(methodNameFmt, p.Service, p.Name)
|
||
|
}
|