monocle 1.2.0

A commandline application to search, parse, and process BGP information in public sources.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core database infrastructure
//!
//! This module provides the foundational database components used throughout monocle:
//!
//! ## SQLite
//! - `DatabaseConn`: SQLite connection wrapper with configuration
//! - `SchemaManager`: SQLite schema initialization and management
//! - `SchemaStatus`: SQLite schema state enumeration

mod connection;
mod schema;

// SQLite exports
pub use connection::DatabaseConn;
pub use schema::{SchemaDefinitions, SchemaManager, SchemaStatus, SCHEMA_VERSION};