watcher/pkg/options/proxy.go

9 lines
150 B
Go
Raw Normal View History

2024-04-10 17:36:56 +08:00
package options
2024-04-12 15:29:43 +08:00
import "time"
2024-04-10 17:36:56 +08:00
type ProxyOption struct {
2024-04-12 15:29:43 +08:00
Subscribes []string `yaml:"subscribes"`
Interval time.Duration `yaml:"interval"`
2024-04-10 17:36:56 +08:00
}