orn-cli 0.1.1

Gen const for smart contract
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::io::Error;

use glob::{GlobError, PatternError};

#[derive(thiserror::Error, Debug)]
pub enum CoreError {
    #[error("pattern error {0}")]
    PatternError(#[from] PatternError),

    #[error("glob error {0}")]
    GlobError(#[from] GlobError),

    #[error("io error {0}")]
    IOError(#[from] Error),
}