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