Skip to content

Instantly share code, notes, and snippets.

@sullemanhossam
Created August 9, 2024 22:44
Show Gist options
  • Save sullemanhossam/937facdfe0ba1b86208127a0d6128998 to your computer and use it in GitHub Desktop.
Save sullemanhossam/937facdfe0ba1b86208127a0d6128998 to your computer and use it in GitHub Desktop.
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