inspirer_foundation/
lib.rs1#[macro_use]
2extern crate async_trait;
3
4pub mod error;
5pub mod service;
6pub mod component;
7
8#[cfg(feature = "enable-axum")]
9pub mod axum;
10
11pub use error::*;
12
13#[cfg(test)]
14mod tests {
15 #[test]
16 fn it_works() {
17 let result = 2 + 2;
18 assert_eq!(result, 4);
19 }
20}