12 lines
246 B
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
|
|
}
|