Skip to main content

stakpak_api/local/
mod.rs

1//! Local storage and hook infrastructure
2//!
3//! This module provides:
4//! - Database operations for local session storage
5//! - Lifecycle hooks for context management
6
7// Sub-modules
8pub(crate) mod context_managers;
9pub mod hooks;
10pub mod migrations;
11pub mod storage;
12
13#[cfg(test)]
14mod tests;