488fcfc820
ensure DeviceStatus is a valid bit flag. [docs] added running tests section to contribution guide. make sure UI correctly treats scrutiny failures as failed.
10 lines
227 B
Go
10 lines
227 B
Go
package measurements
|
|
|
|
import "github.com/analogj/scrutiny/webapp/backend/pkg"
|
|
|
|
type SmartAttribute interface {
|
|
Flatten() (fields map[string]interface{})
|
|
Inflate(key string, val interface{})
|
|
GetStatus() pkg.AttributeStatus
|
|
}
|