2025-04-16 09:27:54 +02:00
|
|
|
package network_map
|
|
|
|
|
|
2025-06-10 23:46:40 +02:00
|
|
|
import "context"
|
2025-05-28 23:05:52 +02:00
|
|
|
|
2025-06-10 23:46:40 +02:00
|
|
|
type Controller interface {
|
|
|
|
|
UpdatePeers(ctx context.Context, accountID string) error
|
2025-04-16 09:27:54 +02:00
|
|
|
}
|