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

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