Simple subscribe mechanism

This commit is contained in:
2025-12-03 14:13:03 +01:00
parent 2152cb7926
commit 339be7f5c6
5 changed files with 162 additions and 7 deletions

View File

@@ -57,4 +57,10 @@ pub enum HandleError {
InvalidPathJAR(String),
}
#[derive(Debug, Clone, Error)]
pub enum SubscribeError {
#[error("No stdout found")]
NoStdout,
}
type Result<T> = std::result::Result<T, Error>;