in-vite 0.1.4

Vite integration for your Rust backend.
Documentation
1
2
3
4
5
6
7
8
9
//! Implements the type `Error`.

#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error(transparent)]
    Io(#[from] std::io::Error),
    #[error(transparent)]
    Json(#[from] serde_json::Error),
}