Gather both WiFi and Ethernet interfaces.
(wifi_default: str = 'wlan0', ethernet_default: str = 'eth0')
| 406 | |
| 407 | |
| 408 | def gather_all_network_interfaces(wifi_default: str = 'wlan0', ethernet_default: str = 'eth0') -> Dict[str, List[Dict]]: |
| 409 | """Gather both WiFi and Ethernet interfaces.""" |
| 410 | return { |
| 411 | 'wifi': gather_wifi_interfaces(wifi_default), |
| 412 | 'ethernet': gather_ethernet_interfaces(ethernet_default), |
| 413 | } |
nothing calls this directly
no test coverage detected