10 lines
282 B
Rust
10 lines
282 B
Rust
use crate::connectionmanager::variables::{SINKPROTOCOLINFO, SOURCEPROTOCOLINFO};
|
|
use pmoupnp::define_action;
|
|
|
|
define_action! {
|
|
pub static GETPROTOCOLINFO = "GetProtocolInfo" stateless {
|
|
out "Source" => SOURCEPROTOCOLINFO,
|
|
out "Sink" => SINKPROTOCOLINFO,
|
|
}
|
|
}
|