hermod-api 0.1.2

Rapid and seamless customer interaction, designed for CS 495 at The University of Alabama.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! 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 clients;
pub mod db;
pub mod handlers;
pub mod services;
pub mod startup;