12 lines
286 B
Go
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")
|
|
}
|