8 lines
157 B
Go
8 lines
157 B
Go
package measurements
|
|
|
|
type SmartAttribute interface {
|
|
Flatten() (fields map[string]interface{})
|
|
Inflate(key string, val interface{})
|
|
GetStatus() string
|
|
}
|