mirror of
https://github.com/openziti/zrok.git
synced 2024-12-02 21:16:09 +01: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
|
|
}
|