diff options
Diffstat (limited to 'src/ipc/mod.rs')
| -rw-r--r-- | src/ipc/mod.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/ipc/mod.rs b/src/ipc/mod.rs index 26485f8260..afb140f4c6 100644 --- a/src/ipc/mod.rs +++ b/src/ipc/mod.rs @@ -1,4 +1,12 @@ -pub mod zmq; +#[cfg(windows)] +#[path = "nop_ipc.rs"] +mod ipc_impl; + +#[cfg(not(windows))] +#[path = "zmq_ipc.rs"] +mod ipc_impl; + +pub use self::ipc_impl::*; /// The type signature for functions accepting messages from the server. /// If the server fails in delivering the message for any reason it will |
