1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//! Rapid and seamless customer interaction.
//! Designed by Russell Weas, Jonathan Pence, Do Thien An Duong, Simon Jeon
//! for CS 495 at The University of Alabama.
//!
//! This wiki only contains documentation for publicly exposed structs/methods
//! in each module. For more information about auto-generated Rust documentation,
//! visit the [rustdoc documentation](https://doc.rust-lang.org/rustdoc/what-is-rustdoc.html).
//!
//! All code in this crate is licensed by the file in the GitHub repo.
pub mod auth;
pub mod clients;
pub mod configuration;
pub mod db;
pub mod error;
pub mod handlers;
pub mod jwt;
pub mod startup;
pub mod telemetry;