Add option to skip notification at the very first analysis of an image (#10)

This commit is contained in:
CrazyMax
2019-12-22 16:32:27 +01:00
parent b288673a33
commit 7a8b4677fc
10 changed files with 51 additions and 9 deletions

View File

@@ -2,6 +2,7 @@ package model
// Watch holds data necessary for watch configuration
type Watch struct {
Workers int `yaml:"workers,omitempty"`
Schedule string `yaml:"schedule,omitempty"`
Workers int `yaml:"workers,omitempty"`
Schedule string `yaml:"schedule,omitempty"`
FirstCheckNotif bool `yaml:"first_check_notif,omitempty"`
}