1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! 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 MIT licensed.
#![doc(
    html_logo_url = "https://user-images.githubusercontent.com/5386772/137547011-0dafef0a-8c82-4b48-924c-d540e504a7f4.png"
)]

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;