1
1
mirror of https://github.com/OJ/gobuster.git synced 2025-09-23 18:47:21 +02:00
gobuster/gobusters3/options.go
2023-08-31 18:40:56 +02:00

18 lines
338 B
Go

package gobusters3
import (
"github.com/OJ/gobuster/v3/libgobuster"
)
// OptionsS3 is the struct to hold all options for this plugin
type OptionsS3 struct {
libgobuster.BasicHTTPOptions
MaxFilesToList int
ShowFiles bool
}
// NewOptions returns a new initialized OptionsS3
func NewOptions() *OptionsS3 {
return &OptionsS3{}
}