Aleksey Savchuk
a4fb7f085b
All checks were successful
Tests and linters / Run gofumpt (pull_request) Successful in 2m36s
Pre-commit hooks / Pre-commit (pull_request) Successful in 3m3s
Vulncheck / Vulncheck (pull_request) Successful in 2m50s
Tests and linters / Tests (1.22) (pull_request) Successful in 3m3s
DCO action / DCO (pull_request) Successful in 2m47s
Tests and linters / Lint (pull_request) Successful in 3m39s
Tests and linters / Staticcheck (pull_request) Successful in 3m37s
Tests and linters / Tests (1.23) (pull_request) Successful in 3m43s
Build / Build Components (1.22) (pull_request) Successful in 3m32s
Build / Build Components (1.23) (pull_request) Successful in 3m32s
Tests and linters / gopls check (pull_request) Successful in 4m10s
Tests and linters / Tests with -race (pull_request) Successful in 4m16s
Signed-off-by: Aleksey Savchuk <a.savchuk@yadro.com>
15 lines
521 B
Go
15 lines
521 B
Go
package container
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/container"
|
|
)
|
|
|
|
// Server is an interface of the FrostFS API Container service server.
|
|
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)
|
|
}
|