gardesk/garclip / a204671

Browse files

export GarClient from ipc module

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
a20467126931ef039bbed46ae6eec64bdec04e23
Parents
b72d074
Tree
bab3197

1 changed file

StatusFile+-
M garclip/src/ipc/mod.rs 2 0
garclip/src/ipc/mod.rsmodified
@@ -1,7 +1,9 @@
1
 pub mod client;
1
 pub mod client;
2
+pub mod gar_client;
2
 pub mod protocol;
3
 pub mod protocol;
3
 pub mod server;
4
 pub mod server;
4
 
5
 
5
 pub use client::{send_command, send_command_blocking};
6
 pub use client::{send_command, send_command_blocking};
7
+pub use gar_client::GarClient;
6
 pub use protocol::{Command, Event, Response};
8
 pub use protocol::{Command, Event, Response};
7
 pub use server::{IpcClient, IpcServer};
9
 pub use server::{IpcClient, IpcServer};