usestd::path::PathBuf;/// Events that arrive asynchronously from background tasks.
/// These get merged into the main event loop alongside keyboard input.
#[derive(Debug, Clone)]pubenumAppEvent{/// A background git operation completed successfully
WorktreeCreated { path: PathBuf },/// A background git operation failed
GitError(String),}