mirror of
https://github.com/openziti/zrok.git
synced 2025-06-30 22:40:37 +02:00
15 lines
246 B
Go
15 lines
246 B
Go
package canary
|
|
|
|
import "time"
|
|
|
|
type LooperOptions struct {
|
|
Iterations uint
|
|
Timeout time.Duration
|
|
MinPayload uint64
|
|
MaxPayload uint64
|
|
MinDwell time.Duration
|
|
MaxDwell time.Duration
|
|
MinPacing time.Duration
|
|
MaxPacing time.Duration
|
|
}
|