12 lines
282 B
Go
12 lines
282 B
Go
package connectionmanager
|
|
|
|
import sv "gargoton.petite-maison-orange.fr/eric/pmomusic/pmoupnp/devices/services/statevariables"
|
|
|
|
var Direction = func() *sv.StateVariable {
|
|
|
|
ts := sv.StateType_String.NewStateValue("Direction")
|
|
ts.AppendAllowedValue("Input", "Ouput")
|
|
|
|
return ts
|
|
}()
|