1
1
mirror of https://github.com/OJ/gobuster.git synced 2025-07-03 04:56:52 +02:00
gobuster/gobustergcs/options.go
2023-08-31 18:40:56 +02:00

18 lines
343 B
Go

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