frostfs-node/pkg/services/billing/server/list_containers.go
Dmitrii Stepanov 020281a0e9 [#9999] node: Add billing service
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
2024-06-24 16:39:43 +03:00

12 lines
286 B
Go

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")
}