5 lines
118 B
Rust
5 lines
118 B
Rust
use std::result::Result as RResult;
|
|
|
|
use error::InteractionError;
|
|
|
|
pub type Result<T> = RResult<T, InteractionError>;
|