Skip to main content

Module db

Module db 

Source
Expand description

Database module for code intelligence storage.

This module provides SQLite-based storage for:

  • File tracking with content hashes
  • Symbol information (functions, structs, enums, etc.)
  • Relationships between symbols (calls, imports, types)
  • Module-level information

Re-exports§

pub use schema::CrossFileEdge;
pub use schema::Database;
pub use schema::EdgeSymbol;
pub use schema::FileComplexity;
pub use schema::MapSymbolRow;
pub use schema::SymbolMetrics;
pub use schema::SCHEMA_VERSION;
pub use models::*;

Modules§

models
Data models for code intelligence.
schema
SQLite schema and database operations.