goscan is a Go module.
To use goscan in your project, you can use go get:
go get github.com/sumirseth/goscanimport (
"fmt"
"github.com/sumirseth/goscan"
)
func main() {
// Example usage (replace with actual functionality)
fmt.Println("Using goscan")
}Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
- For slightly better memory safety in the future, clone IPs before storing them in a slice:
ips = append(ips, append(net.IP(nil), ip...).String())