refacto: move ReadingRepository where it logically belongs

This commit is contained in:
Alexis Fourmaux 2026-05-10 15:06:36 +02:00
parent aa72971627
commit 017092040d
4 changed files with 26 additions and 21 deletions

View file

@ -0,0 +1,4 @@
from .reading_repository import PgReadingQueryRepository, PgReadingRepository
from .device_repository import PgDeviceRepository
__all__ = ["PgReadingQueryRepository", "PgDeviceRepository", "PgReadingRepository"]