1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! Common types used by the various Krill components.
pub mod actor;
pub mod api;
pub mod bgp;
pub mod crypto;
pub mod error;
pub mod eventsourcing;
pub mod remote;
pub mod util;

//------------ Response Aliases ----------------------------------------------

pub type KrillEmptyResult = std::result::Result<(), self::error::Error>;
pub type KrillResult<T> = std::result::Result<T, self::error::Error>;