1
2
3
4
5
6
7
8
9
10
11
12
13
//! This crate is a basic utils crate that helps glue nanoservices together.
#[allow(dead_code)]
pub mod errors;

#[cfg(feature = "jwt")]
#[allow(dead_code)]
pub mod jwt;
#[allow(dead_code)]
pub mod config;

#[cfg(feature = "networking")]
#[allow(dead_code)]
pub mod networking;