mirror of
https://github.com/OJ/gobuster.git
synced 2025-09-23 06:37:40 +02:00
18 lines
338 B
Go
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{}
|
|
}
|