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

17 lines
273 B
Go

package gobustertftp
import (
"time"
)
// OptionsTFTP holds all options for the tftp plugin
type OptionsTFTP struct {
Server string
Timeout time.Duration
}
// NewOptions returns a new initialized OptionsTFTP
func NewOptions() *OptionsTFTP {
return &OptionsTFTP{}
}