use crate::{
Db,
types::{BidderId, DateTime, DemandId, PortfolioId, ProductId},
};
use fts_core::ports::Repository;
mod batch;
mod demand;
mod portfolio;
mod product;
impl Repository for Db {
type Error = sqlx::Error;
type DateTime = DateTime;
type BidderId = BidderId;
type ProductId = ProductId;
type DemandId = DemandId;
type PortfolioId = PortfolioId;
}