1 //! Common types used by the various Krill components.
2 pub mod actor;
3 pub mod api;
4 pub mod bgp;
5 pub mod crypto;
6 pub mod error;
7 pub mod eventsourcing;
8 pub mod remote;
9 pub mod util;
10 
11 //------------ Response Aliases ----------------------------------------------
12 
13 pub type KrillEmptyResult = std::result::Result<(), self::error::Error>;
14 pub type KrillResult<T> = std::result::Result<T, self::error::Error>;
15