mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-24 06:28:13 +01:00
10 lines
260 B
Go
10 lines
260 B
Go
package model
|
|
|
|
// Watch holds data necessary for watch configuration
|
|
type Watch struct {
|
|
Workers int `yaml:"workers,omitempty"`
|
|
Schedule string `yaml:"schedule,omitempty"`
|
|
Os string `yaml:"os,omitempty"`
|
|
Arch string `yaml:"arch,omitempty"`
|
|
}
|