tarsila 0.1.1

GUI image editor for pixel art
1
2
3
4
5
6
7
8
9
10
use lapix::Error as LapixError;
use thiserror::Error;

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

#[derive(Debug, Error)]
pub enum Error {
    #[error("Image error: {0}")]
    LapixError(#[from] LapixError),
}