Files
thoughts/crates/adapters/postgres/src/like.rs

3 lines
142 B
Rust

pub struct PgLikeRepository { _pool: sqlx::PgPool }
impl PgLikeRepository { pub fn new(pool: sqlx::PgPool) -> Self { Self { _pool: pool } } }