src.dualinventive.com/go/devsim/simulator/js/property.go

12 lines
246 B
Go

package js
// Set property value
func (s *Simulator) Set(property string, uid uint16, value interface{}) error {
return nil
}
// Get property value
func (s *Simulator) Get(property string, uid uint16) (interface{}, error) {
return nil, nil
}