inkhaven 1.2.4

Inkhaven — TUI literary work editor for Typst books
use std::path::PathBuf;

use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("project root not found at {0}; run `inkhaven init <path>` first")]
    ProjectNotFound(PathBuf),

    #[error("project already exists at {0}")]
    #[allow(dead_code)] // kept as a stable diagnostic kind; init's
    // confirmation flow surfaces a different message but third-party
    // callers may still match on this variant.
    ProjectExists(PathBuf),

    #[error("config error: {0}")]
    Config(String),

    #[error("store error: {0}")]
    Store(String),

    #[error("io error: {0}")]
    Io(#[from] std::io::Error),
}

pub type Result<T> = std::result::Result<T, Error>;