whos_your_daddy_common 0.1.2

Common source code for the Who's Your Daddy projects, like the Enumerator and Presenter.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![warn(missing_docs)]

//! Common types and utilities shared across the workspace.
//!
//! This crate provides:
//! - Configuration loading for database connectivity (`config`).
//! - A shared error type for cross-crate error handling (`error`).
//! - An `Official` structure to represent government officials.

// Export library modules here.

pub mod config;
pub mod congress_gov;
pub mod db;
pub mod error;
pub mod official;