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

3 lines
152 B
Rust

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