Files
diun/internal/model/watch.go
CrazyMax 5942e39b83 Allow overriding os and architecture when watching
Move insecure_tls and timeout options to registry option
Rename Bolt bucket
Change default schedule
Review registry client
2019-06-08 02:50:46 +02:00

9 lines
216 B
Go

package model
// Watch holds data necessary for watch configuration
type Watch struct {
Schedule string `yaml:"schedule,omitempty"`
Os string `yaml:"os,omitempty"`
Arch string `yaml:"arch,omitempty"`
}