24 lines
396 B
Go
24 lines
396 B
Go
package connectionmanager
|
|
|
|
import "gargoton.petite-maison-orange.fr/eric/pmomusic/pmoupnp/devices/services/actions"
|
|
|
|
var GetProtocolInfo = func() *actions.Action {
|
|
|
|
ac := actions.NewAction("GetProtocolInfo")
|
|
ac.AddArgument(
|
|
actions.NewOutArgument(
|
|
"Source",
|
|
SourceProtocolInfo,
|
|
),
|
|
)
|
|
|
|
ac.AddArgument(
|
|
actions.NewOutArgument(
|
|
"Sink",
|
|
SinkProtocolInfo,
|
|
),
|
|
)
|
|
|
|
return ac
|
|
}()
|