13 lines
357 B
Rust
13 lines
357 B
Rust
//! Wire types and config schema shared between the xy daemon and CLI.
|
|
|
|
pub mod config;
|
|
pub mod error;
|
|
pub mod kdl_parse;
|
|
pub mod rpc;
|
|
pub mod state;
|
|
|
|
pub use config::{RestartConfig, RestartPolicy, ServerConfig, StopConfig};
|
|
pub use error::{ConfigError, RpcErrorCode};
|
|
pub use kdl_parse::{load_all_configs, parse_server_config};
|
|
pub use state::ServerState;
|