forked from TrueCloudLab/frostfs-node
a87fdab324
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
10 lines
252 B
Go
10 lines
252 B
Go
package wrapper
|
|
|
|
// NodeInfo groups information about NeoFS storage node.
|
|
type NodeInfo struct{}
|
|
|
|
// AddPeer registers peer in NeoFS network through
|
|
// Netmap contract call.
|
|
func (w *Wrapper) AddPeer(nodeInfo NodeInfo) error {
|
|
panic("implement me")
|
|
}
|