17 lines
337 B
Go
17 lines
337 B
Go
package connectionmanager
|
|
|
|
import "gargoton.petite-maison-orange.fr/eric/pmomusic/pmoupnp/devices/services/actions"
|
|
|
|
var GetCurrentConnectionIDs = func() *actions.Action {
|
|
|
|
ac := actions.NewAction("GetCurrentConnectionIDs")
|
|
ac.AddArgument(
|
|
actions.NewOutArgument(
|
|
"ConnectionIDs",
|
|
CurrentConnectionIDs,
|
|
),
|
|
)
|
|
|
|
return ac
|
|
}()
|