15 lines
195 B
Go
15 lines
195 B
Go
package daemon
|
|
|
|
import (
|
|
"src.dualinventive.com/go/devsim/simulator"
|
|
)
|
|
|
|
type template struct {
|
|
simulator.Info
|
|
deviceUID string
|
|
}
|
|
|
|
func (t *template) DeviceUID() string {
|
|
return t.deviceUID
|
|
}
|