package models import ( "sync" ) type ScannerState struct { IsScanning bool `json:"isScanning"` Mu sync.Mutex `json:"-"` }