Created
August 9, 2024 22:44
-
-
Save sullemanhossam/937facdfe0ba1b86208127a0d6128998 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package cronJob | |
import ( | |
"fmt" | |
"network-chesswork/mac" | |
) | |
func FindConnectedMacAddresses(interfaceRange string) error { | |
err := mac.Sniff(interfaceRange) | |
// Assuming utils.RunScript takes a string and an interface{} | |
if err != nil { | |
return err | |
} else { | |
fmt.Println("Script executed successfully") | |
} | |
return nil | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment