//! leglobal - Global Project Registry
//!
//! *Le Global* (The Global) - Persistent project discovery and registry
/// Global project registry using local SQLite
/// Project discovery and scanning
/// Background sync for keeping registry up to date
/// Tool discovery and execution utilities
/// Default database path for the registry
pub const DEFAULT_DB_PATH: &str = ".leindex/global_registry.db";
/// Initial backoff delay in seconds for sync retries
pub const INITIAL_BACKOFF_SECS: u64 = 1;
/// Maximum backoff delay in seconds for sync retries (5 minutes)
pub const MAX_BACKOFF_SECS: u64 = 300;
pub use ;