11 lines
142 B
Go
11 lines
142 B
Go
package models
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
type ScannerState struct {
|
|
IsScanning bool `json:"isScanning"`
|
|
Mu sync.Mutex `json:"-"`
|
|
}
|