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 @@
11
 pub mod client;
2
+pub mod gar_client;
23
 pub mod protocol;
34
 pub mod server;
45
 
56
 pub use client::{send_command, send_command_blocking};
7
+pub use gar_client::GarClient;
68
 pub use protocol::{Command, Event, Response};
79
 pub use server::{IpcClient, IpcServer};