()
| 1419 | } |
| 1420 | |
| 1421 | func (a *App) GetNetworkStatus() system.NetworkStatus { |
| 1422 | if a.netmon == nil { |
| 1423 | return system.NetworkStatus{Online: true} |
| 1424 | } |
| 1425 | return a.netmon.GetStatus() |
| 1426 | } |
| 1427 | |
| 1428 | func (a *App) GetLANIPs() []string { |
| 1429 | ifaces, err := net.Interfaces() |