vespe 0.1.2

Text as a Canvas for LLM Collaboration and Automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod file;
pub mod git;
pub mod path;
pub mod task;

use thiserror::Error as ThisError;

#[derive(Debug, ThisError)]
pub enum Error {
    #[error(transparent)]
    File(#[from] file::Error),
    #[error(transparent)]
    Git(#[from] git::Error),
    #[error(transparent)]
    Path(#[from] path::Error),
}

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