6 lines
163 B
Rust
6 lines
163 B
Rust
use crate::Error;
|
|
|
|
/// The result of running an [`Application`].
|
|
///
|
|
/// [`Application`]: trait.Application.html
|
|
pub type Result = std::result::Result<(), Error>;
|