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