frostfs-node/pkg/services/control/server/netmap_snapshot.go

13 lines
320 B
Go
Raw Normal View History

package control
import (
"context"
"github.com/nspcc-dev/neofs-node/pkg/services/control"
)
// NetmapSnapshot reads network map snapshot from Netmap storage.
func (s *Server) NetmapSnapshot(ctx context.Context, req *control.NetmapSnapshotRequest) (*control.NetmapSnapshotResponse, error) {
panic("implement me")
}