frostfs-node/pkg/services/billing/server/list_containers.go

13 lines
286 B
Go
Raw Normal View History

package server
import (
"context"
"errors"
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/billing"
)
func (s *Server) ListContainers(context.Context, *billing.ListContainersRequest) (*billing.ListContainersResponse, error) {
return nil, errors.New("not implemented")
}