1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

Add auxiliary methods to acl for getting records, export peer manager

This commit is contained in:
mcrakhman 2023-07-18 14:35:36 +02:00
parent 20c891b7dd
commit 854079d1be
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
8 changed files with 85 additions and 1 deletions

View file

@ -151,6 +151,10 @@ func (p *mockPeerManager) GetResponsiblePeers(ctx context.Context) (peers []peer
return nil, nil
}
func (p *mockPeerManager) GetNodePeers(ctx context.Context) (peers []peer.Peer, err error) {
return nil, nil
}
//
// Mock PeerManagerProvider
//