3 lines
146 B
Rust
3 lines
146 B
Rust
pub struct PgApiKeyRepository { _pool: sqlx::PgPool }
|
|
impl PgApiKeyRepository { pub fn new(pool: sqlx::PgPool) -> Self { Self { _pool: pool } } }
|