removed filelock from json

This commit is contained in:
BroodjeAap 2020-07-25 11:18:58 +00:00
parent 27d0297c80
commit fd287d7ab8

View file

@ -22,7 +22,7 @@ type Stream struct {
Base64 string `json:"base64"` Base64 string `json:"base64"`
Interval int `json:"interval"` Interval int `json:"interval"`
WatchAreas []WatchArea `json:"watchAreas"` WatchAreas []WatchArea `json:"watchAreas"`
FileLock sync.Mutex `json:"lock"` FileLock sync.Mutex `json:"-"`
} }
// NewStream creates a new Stream Object // NewStream creates a new Stream Object