Adds Server struct that listens on a Unix domain socket, accepts client connections (thread-per-client), reads newline-delimited JSON requests, dispatches to ProviderManager/FrecencyStore/Config, and sends JSON responses back. Includes stale socket cleanup and Drop impl for socket removal.
10 lines
142 B
Rust
10 lines
142 B
Rust
pub mod config;
|
|
pub mod data;
|
|
pub mod filter;
|
|
pub mod ipc;
|
|
pub mod notify;
|
|
pub mod paths;
|
|
pub mod plugins;
|
|
pub mod providers;
|
|
pub mod server;
|