9 lines
227 B
Rust
9 lines
227 B
Rust
use crate::contentdirectory::variables::SEARCHCAPABILITIES;
|
|
use pmoupnp::define_action;
|
|
|
|
define_action! {
|
|
pub static GETSEARCHCAPABILITIES = "GetSearchCapabilities" {
|
|
out "SearchCaps" => SEARCHCAPABILITIES,
|
|
}
|
|
}
|