//! Repository patterns for tenant-scoped data access
use crate::;
use async_trait;
use Uuid;
pub use TenantRepository;
/// Trait for tenant-scoped repository operations
///
/// This trait ensures all data access operations are scoped to a tenant.
/// Implementations MUST enforce tenant isolation at the database level.
// Integration tests are in tests/ directory