17 lines
334 B
Go
17 lines
334 B
Go
|
package gobustergcs
|
||
|
|
||
|
import (
|
||
|
"git.sual.in/casual/gobuster-lib/libgobuster"
|
||
|
)
|
||
|
|
||
|
// OptionsGCS is the struct to hold all options for this plugin
|
||
|
type OptionsGCS struct {
|
||
|
libgobuster.BasicHTTPOptions
|
||
|
MaxFilesToList int
|
||
|
}
|
||
|
|
||
|
// NewOptionsGCS returns a new initialized OptionsS3
|
||
|
func NewOptionsGCS() *OptionsGCS {
|
||
|
return &OptionsGCS{}
|
||
|
}
|