Files
wireguard-ui/src/functions/backend/setup/grab-host-network-interface.ts
T
2026-09-13 06:53:33 +01:00

10 lines
186 B
TypeScript

/**
* Function to grab the host's network interface
* eg `eth0`
* @param param0
*/
export default async function grabHostNetworkInterface() {
// Placeholder
return `eth0`;
}