Skip to main content

aimux_server/
lib.rs

1mod attach;
2mod ipc_dispatch;
3#[cfg(windows)]
4mod ipc;
5#[cfg(unix)]
6mod ipc_unix;
7pub mod layout;
8mod layout_dsl;
9mod layout_save;
10mod orchestration;
11#[cfg(windows)]
12mod pty;
13#[cfg(unix)]
14mod pty_unix;
15pub mod screen;
16#[cfg(windows)]
17mod security;
18#[cfg(unix)]
19mod security_unix;
20pub mod session;
21mod template;
22
23#[cfg(windows)]
24mod server;
25#[cfg(unix)]
26mod server_unix;
27
28#[cfg(windows)]
29pub use server::run_server;
30#[cfg(unix)]
31pub use server_unix::run_server;