10 lines
186 B
TypeScript
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`;
|
|
}
|