mirror of
https://github.com/OJ/gobuster.git
synced 2025-07-03 04:56:52 +02:00
18 lines
343 B
Go
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{}
|
|
}
|