2021-03-15 13:53:08 +03:00
|
|
|
package session
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2023-03-07 16:38:26 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/session"
|
2021-03-15 13:53:08 +03:00
|
|
|
)
|
|
|
|
|
2023-02-05 18:59:38 +03:00
|
|
|
// Server is an interface of the FrostFS API Session service server.
|
2021-03-15 13:53:08 +03:00
|
|
|
type Server interface {
|
|
|
|
Create(context.Context, *session.CreateRequest) (*session.CreateResponse, error)
|
|
|
|
}
|