[#263] pkg/client: Split interface method's declarations with linebreaks

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-03-17 13:59:45 +03:00 committed by Alex Vanin
parent c819909906
commit a43175e2ea
3 changed files with 14 additions and 0 deletions

View file

@ -18,6 +18,7 @@ type Netmap interface {
// in client constructor via address or open connection. This can be used as a
// health check to see if node is alive and responses to requests.
EndpointInfo(context.Context, ...CallOption) (*EndpointInfo, error)
// NetworkInfo returns information about the NeoFS network of which the remote server is a part.
NetworkInfo(context.Context, ...CallOption) (*netmap.NetworkInfo, error)
}