I'm trying to use Goose in a binary that itself has some command line options. The issue I ran into is that when I do GooseAttack::initialize it will read the command line arguments of my binary and they are not recognized, causing the program to exit. I can use GooseAttack::initialize_with_config instead, so that Goose doesn't read the command line args. The problem is that the GooseConfiguration object is very large. It would be nice if it had a Default impl so that I can send that to GooseAttack::initialize_with_config.
Hello,
I'm trying to use Goose in a binary that itself has some command line options. The issue I ran into is that when I do
GooseAttack::initialize
it will read the command line arguments of my binary and they are not recognized, causing the program to exit. I can useGooseAttack::initialize_with_config
instead, so that Goose doesn't read the command line args. The problem is that theGooseConfiguration
object is very large. It would be nice if it had aDefault
impl so that I can send that toGooseAttack::initialize_with_config
.