15 lines
239 B
Rust
15 lines
239 B
Rust
mod object_trait;
|
|
|
|
pub mod variable_types;
|
|
pub mod state_variables;
|
|
pub mod value_ranges;
|
|
pub mod server;
|
|
|
|
pub use crate::object_trait::UpnpObject;
|
|
|
|
|
|
#[derive(Clone)]
|
|
pub struct UpnpObjectType {
|
|
name: String,
|
|
object_type: String,
|
|
} |