feat<logging>: assist user if no arguments are provided

This commit is contained in:
vmfunc
2024-10-12 21:28:59 +02:00
parent 5b63515650
commit 65243f46e3
+1 -1
View File
@@ -65,7 +65,7 @@ func New(settings *config.Settings) (*App, error) {
app.targets = append(app.targets, scanner.Text())
}
} else {
return app, errors.New("target(s) must be supplied with -u or -f")
return app, errors.New("target(s) must be supplied with -u or -f\n\nSee 'sif -h' for more information")
}
return app, nil