summaryrefslogtreecommitdiffstats
path: root/src/result.rs
blob: 2f05a6a9ddd16057f1951d77facbfb65a88a7b06 (plain) (blame)
1
2
3
4
5
6
use crate::Error;

/// The result of running an [`Application`].
///
/// [`Application`]: trait.Application.html
pub type Result = std::result::Result<(), Error>;