diff --git a/bin/durs-server/src/main.rs b/bin/durs-server/src/main.rs
index f95046c36cb3122ff00522c1725e0e71d609696d..7d77e6356928d0ca6d1a10e5ae979c5b110e34f0 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], []))
 }