mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 08:16:39 +00:00
9 lines
210 B
Go
9 lines
210 B
Go
package peers
|
|
|
|
type Repository interface {
|
|
FindPeerByPubKey(pubKey string) (Peer, error)
|
|
FindPeerByID(id string) (Peer, error)
|
|
FindAllPeersInAccount(id string) ([]Peer, error)
|
|
UpdatePeer(peer Peer) error
|
|
}
|