package presence import ( "context" ) type ( Interfaces map[string]bool HardwareAddrStates map[string]State ARP interface { Present(ctx context.Context, ifs Interfaces, addrs HardwareAddrStates) (bool, error) } )