17 lines
290 B
Go
17 lines
290 B
Go
package avtransport
|
|
|
|
import "gargoton.petite-maison-orange.fr/eric/pmomusic/pmoupnp/devices/services/actions"
|
|
|
|
var Stop = func() *actions.Action {
|
|
|
|
ac := actions.NewAction("Stop")
|
|
ac.AddArgument(
|
|
actions.NewInArgument(
|
|
"InstanceID",
|
|
A_ARG_TYPE_InstanceID,
|
|
),
|
|
)
|
|
|
|
return ac
|
|
}()
|