amélioration de la webapp
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
use crate::renderingcontrol::variables::{A_ARG_TYPE_INSTANCE_ID, A_ARG_TYPE_CHANNEL, MUTE};
|
||||
use crate::renderingcontrol::variables::{A_ARG_TYPE_CHANNEL, A_ARG_TYPE_INSTANCE_ID, MUTE};
|
||||
use pmoupnp::define_action;
|
||||
|
||||
define_action! {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use crate::renderingcontrol::variables::{A_ARG_TYPE_INSTANCE_ID, A_ARG_TYPE_CHANNEL, VOLUME};
|
||||
use crate::renderingcontrol::variables::{A_ARG_TYPE_CHANNEL, A_ARG_TYPE_INSTANCE_ID, VOLUME};
|
||||
use pmoupnp::define_action;
|
||||
|
||||
define_action! {
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
mod getvolume;
|
||||
mod setvolume;
|
||||
mod getmute;
|
||||
mod getvolume;
|
||||
mod setmute;
|
||||
mod setvolume;
|
||||
|
||||
pub use getvolume::GETVOLUME;
|
||||
pub use setvolume::SETVOLUME;
|
||||
pub use getmute::GETMUTE;
|
||||
pub use getvolume::GETVOLUME;
|
||||
pub use setmute::SETMUTE;
|
||||
pub use setvolume::SETVOLUME;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use crate::renderingcontrol::variables::{A_ARG_TYPE_INSTANCE_ID, A_ARG_TYPE_CHANNEL, MUTE};
|
||||
use crate::renderingcontrol::variables::{A_ARG_TYPE_CHANNEL, A_ARG_TYPE_INSTANCE_ID, MUTE};
|
||||
use pmoupnp::define_action;
|
||||
|
||||
define_action! {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
use crate::renderingcontrol::variables::{A_ARG_TYPE_INSTANCE_ID, A_ARG_TYPE_CHANNEL, VOLUME};
|
||||
use crate::renderingcontrol::variables::{A_ARG_TYPE_CHANNEL, A_ARG_TYPE_INSTANCE_ID, VOLUME};
|
||||
use pmoupnp::define_action;
|
||||
|
||||
define_action! {
|
||||
|
||||
@@ -51,8 +51,8 @@
|
||||
|
||||
use pmoupnp::define_service;
|
||||
|
||||
pub mod variables;
|
||||
pub mod actions;
|
||||
pub mod variables;
|
||||
|
||||
use actions::{GETMUTE, GETVOLUME, SETMUTE, SETVOLUME};
|
||||
use variables::{A_ARG_TYPE_CHANNEL, A_ARG_TYPE_INSTANCE_ID, MUTE, VOLUME};
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
mod a_arg_type_instanceid;
|
||||
mod a_arg_type_channel;
|
||||
mod volume;
|
||||
mod a_arg_type_instanceid;
|
||||
mod mute;
|
||||
mod volume;
|
||||
|
||||
pub use a_arg_type_instanceid::A_ARG_TYPE_INSTANCE_ID;
|
||||
pub use a_arg_type_channel::A_ARG_TYPE_CHANNEL;
|
||||
pub use volume::VOLUME;
|
||||
pub use a_arg_type_instanceid::A_ARG_TYPE_INSTANCE_ID;
|
||||
pub use mute::MUTE;
|
||||
pub use volume::VOLUME;
|
||||
|
||||
Reference in New Issue
Block a user