shell_compose/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod cli;
mod dispatcher;
mod display;
mod ipc;
mod justfile;
mod runner;

pub use cli::*;
pub use dispatcher::*;
pub use display::*;
pub use ipc::*;
pub use justfile::*;
pub use runner::*;

pub const SOCKET_NAME: &str = "shell-compose.sock";