2021-03-15 10:53:08 +00:00
|
|
|
package container
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2023-03-07 13:38:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/container"
|
2021-03-15 10:53:08 +00:00
|
|
|
)
|
|
|
|
|
2023-02-05 15:59:38 +00:00
|
|
|
// Server is an interface of the FrostFS API Container service server.
|
2021-03-15 10:53:08 +00:00
|
|
|
type Server interface {
|
|
|
|
Put(context.Context, *container.PutRequest) (*container.PutResponse, error)
|
|
|
|
Get(context.Context, *container.GetRequest) (*container.GetResponse, error)
|
|
|
|
Delete(context.Context, *container.DeleteRequest) (*container.DeleteResponse, error)
|
|
|
|
List(context.Context, *container.ListRequest) (*container.ListResponse, error)
|
|
|
|
}
|