mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-31 01:57:21 +01:00
8 lines
180 B
Go
8 lines
180 B
Go
package model
|
|
|
|
// Watch holds data necessary for watch configuration
|
|
type Watch struct {
|
|
Workers int `yaml:"workers,omitempty"`
|
|
Schedule string `yaml:"schedule,omitempty"`
|
|
}
|