Coverage for agentos/storage/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-02 09:59 +0800
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-02 09:59 +0800
1"""Persistent storage backends: SQLite checkpoint store."""
3from .base import CheckpointStore, SqliteStore
5__all__ = ["CheckpointStore", "SqliteStore"]