ackerman 0.1.1

Yggdrasil Shared Structure
Documentation
1
2
3
4
5
6
7
8
9
use ropey::Error;

use crate::YggdrasilError;

impl From<Error> for YggdrasilError {
    fn from(e: Error) -> Self {
        Self::language_error(e.to_string())
    }
}