feat(protocol): ServerConfig + ConfigError + RpcErrorCode

This commit is contained in:
2026-05-25 11:23:57 +02:00
parent 5a0963665d
commit 355d0debda
3 changed files with 60 additions and 1 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
//! Wire types and config schema shared between the xy daemon and CLI.
pub mod config;
pub mod error;
pub mod state;
pub use config::{RestartConfig, RestartPolicy, StopConfig};
pub use config::{RestartConfig, RestartPolicy, ServerConfig, StopConfig};
pub use error::{ConfigError, RpcErrorCode};
pub use state::ServerState;