From b4e7748bb8f652d79f03e01a2fd88181a27e52d7 Mon Sep 17 00:00:00 2001
From: librelois <elois@ifee.fr>
Date: Sat, 11 May 2019 20:51:26 +0200
Subject: [PATCH] [feat] durs: plug module ws2p v2+

---
 bin/durs-server/src/main.rs | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/bin/durs-server/src/main.rs b/bin/durs-server/src/main.rs
index f95046c3..7d77e635 100644
--- a/bin/durs-server/src/main.rs
+++ b/bin/durs-server/src/main.rs
@@ -39,7 +39,7 @@ use structopt::StructOpt;
 #[cfg(unix)]
 pub use durs_tui::TuiModule;
 //pub use durs_skeleton::SkeletonModule;
-//pub use durs_ws2p::WS2PModule;
+pub use durs_ws2p::WS2PModule;
 pub use durs_ws2p_v1_legacy::WS2Pv1Module;
 
 /// Durs cli main macro
@@ -62,7 +62,7 @@ macro_rules! durs_cli_main {
 #[cfg(not(target_arch = "arm"))]
 fn main() {
     durs_cli_main!(durs_plug!(
-        [WS2Pv1Module],
+        [WS2Pv1Module, WS2PModule],
         [TuiModule /*, SkeletonModule ,DasaModule*/]
     ))
 }
@@ -70,11 +70,11 @@ fn main() {
 #[cfg(target_arch = "arm")]
 fn main() {
     durs_cli_main!(durs_plug!(
-        [WS2Pv1Module],
+        [WS2Pv1Module, WS2PModule],
         [TuiModule /*, SkeletonModule*/]
     ))
 }
 #[cfg(windows)]
 fn main() {
-    durs_cli_main!(durs_plug!([WS2Pv1Module], []))
+    durs_cli_main!(durs_plug!([WS2Pv1Module, WS2PModule], []))
 }
-- 
GitLab