kiosk-core 0.1.0

Core library for kiosk — tmux session manager with worktree support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::path::PathBuf;

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

    /// A background git operation failed
    GitError(String),
}