| 1 | //! gardmd - gar display manager daemon |
| 2 | //! |
| 3 | //! Handles PAM authentication, X11 server management, and session launching. |
| 4 | |
| 5 | pub mod auth; |
| 6 | pub mod config; |
| 7 | pub mod greeter; |
| 8 | pub mod ipc; |
| 9 | pub mod power; |
| 10 | pub mod session; |
| 11 | pub mod sessions; |
| 12 | pub mod vt; |
| 13 | pub mod x11; |
| 14 | |
| 15 | pub use auth::{AuthResponse, AuthSession}; |
| 16 | pub use config::Config; |
| 17 | pub use greeter::GreeterProcess; |
| 18 | pub use ipc::{ClientConnection, Server}; |
| 19 | pub use session::UserSession; |
| 20 | pub use sessions::{list_sessions, list_users}; |
| 21 | pub use x11::XServer; |
| 22 |