Coverage for session_buddy / adapters / reflection_adapter.py: 100.00%
3 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-04 00:43 -0800
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-04 00:43 -0800
1"""Compatibility shim for the Oneiric reflection adapter.
3This module preserves the historical import path while routing to the
4Oneiric-native implementation.
5"""
7from __future__ import annotations
9from session_buddy.adapters.reflection_adapter_oneiric import (
10 ReflectionDatabaseAdapterOneiric as ReflectionDatabaseAdapter,
11)
13__all__ = ["ReflectionDatabaseAdapter"]