Skip to main content

agent_shell_parser/
lib.rs

1pub mod hook;
2pub mod parse;
3pub mod path;
4
5#[derive(Debug, thiserror::Error)]
6#[non_exhaustive]
7pub enum Error {
8    #[error("failed to read stdin: {0}")]
9    Stdin(#[from] std::io::Error),
10    #[error("failed to parse JSON input: {0}")]
11    Json(#[from] serde_json::Error),
12}