hermod_api/
lib.rs

1//! Rapid and seamless customer interaction.
2//! Designed by Russell Weas, Jonathan Pence, Do Thien An Duong, Simon Jeon
3//! for CS 495 at The University of Alabama.
4//!
5//! This wiki only contains documentation for publicly exposed structs/methods
6//! in each module. For more information about auto-generated Rust documentation,
7//! visit the [rustdoc documentation](https://doc.rust-lang.org/rustdoc/what-is-rustdoc.html).
8//!
9//! All code in this crate is MIT licensed.
10#![doc(
11    html_logo_url = "https://user-images.githubusercontent.com/5386772/137547011-0dafef0a-8c82-4b48-924c-d540e504a7f4.png"
12)]
13
14pub mod clients;
15pub mod db;
16pub mod handlers;
17pub mod services;
18pub mod startup;