main.rs 436 B

12345678910111213141516171819202122232425
  1. #![doc = include_str!("../README.md")]
  2. mod cli;
  3. mod client;
  4. mod client_management;
  5. mod config;
  6. mod error;
  7. mod ext;
  8. mod key;
  9. mod realm;
  10. mod schema;
  11. mod server;
  12. mod user;
  13. pub use error::UIDCError;
  14. fn main() {
  15. pretty_env_logger::formatted_timed_builder()
  16. .filter_level(log::LevelFilter::Warn)
  17. .filter(Some(module_path!()), log::LevelFilter::Info)
  18. .parse_default_env()
  19. .init();
  20. cli::invoked();
  21. }