| 1 |
mod protocol; |
| 2 |
mod server; |
| 3 |
pub mod i3_compat; |
| 4 |
pub mod i3_server; |
| 5 |
|
| 6 |
pub use protocol::{Event, Request, Response, WindowInfo, WorkspaceInfo}; |
| 7 |
pub use server::IpcServer; |
| 8 |
pub use i3_server::{I3IpcServer, WorkspaceInfo as I3WorkspaceInfo, OutputInfo, Rect as I3Rect}; |
| 9 |
|