1
2
3
4
5
6
pub mod console;
pub mod traits;

pub type Error = ayun_core::Error;

pub type Result<T, E = Error> = ayun_core::Result<T, E>;