13 lines
166 B
Go
13 lines
166 B
Go
|
|
package device
|
||
|
|
|
||
|
|
type DeviceStatus string
|
||
|
|
|
||
|
|
const (
|
||
|
|
On DeviceStatus = "On"
|
||
|
|
Off DeviceStatus = "Off"
|
||
|
|
)
|
||
|
|
|
||
|
|
func (b DeviceStatus) toString() string {
|
||
|
|
return string(b)
|
||
|
|
}
|