2021-03-12 12:57:23 +00:00
|
|
|
package rpc
|
|
|
|
|
|
|
|
import (
|
2023-03-07 10:38:56 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/client"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/common"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/session"
|
2021-03-12 12:57:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const serviceSession = serviceNamePrefix + "session.SessionService"
|
|
|
|
|
|
|
|
const (
|
|
|
|
rpcSessionCreate = "Create"
|
|
|
|
)
|
|
|
|
|
|
|
|
func CreateSession(
|
|
|
|
cli *client.Client,
|
|
|
|
req *session.CreateRequest,
|
|
|
|
opts ...client.CallOption,
|
|
|
|
) (*session.CreateResponse, error) {
|
|
|
|
resp := new(session.CreateResponse)
|
|
|
|
|
|
|
|
err := client.SendUnary(cli, common.CallMethodInfoUnary(serviceSession, rpcSessionCreate), req, resp, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return resp, nil
|
|
|
|
}
|