hindsight_mcp/lib.rs
1// Copyright (c) 2026 - present Nicholas D. Crosbie
2// SPDX-License-Identifier: MIT
3
4//! hindsight-mcp library
5//!
6//! This module exports the core functionality of hindsight-mcp for use in
7//! integration tests and as a library.
8
9#![warn(missing_docs)]
10
11mod migrations;
12
13pub mod config;
14pub mod db;
15pub mod handlers;
16pub mod ingest;
17pub mod queries;
18pub mod server;