garclip: add library exports
Authored by
mfwolffe <wolffemf@dukes.jmu.edu>
- SHA
027f9968c6a7ff99772b0da739d2a6e5e0b89a41- Parents
-
1194921 - Tree
c39cc88
027f996
027f9968c6a7ff99772b0da739d2a6e5e0b89a411194921
c39cc88| Status | File | + | - |
|---|---|---|---|
| A |
garclip/src/lib.rs
|
12 | 0 |
garclip/src/lib.rsadded@@ -0,0 +1,12 @@ | ||
| 1 | +pub mod clipboard; | |
| 2 | +pub mod config; | |
| 3 | +pub mod daemon; | |
| 4 | +pub mod error; | |
| 5 | +pub mod ipc; | |
| 6 | +pub mod x11; | |
| 7 | + | |
| 8 | +pub use clipboard::{ClipboardContent, ClipboardEntry, ClipboardHistory, ClipboardManager}; | |
| 9 | +pub use config::Config; | |
| 10 | +pub use daemon::DaemonState; | |
| 11 | +pub use error::{Error, Result}; | |
| 12 | +pub use ipc::{Command, Event, Response}; | |