feat(search): offset & limit options for search

This commit is contained in:
RafayAhmad7548 2026-09-01 19:58:14 +05:00
parent 10e3ca2efb
commit 4c6daf1fb7
Signed by: RafayAhmad
SSH key fingerprint: SHA256:WURX8viobA1uawb4dWM3LqYrY+XPcZcXhAXAlrYdhtE
3 changed files with 18 additions and 8 deletions

View file

@ -3,8 +3,6 @@ use serde::Deserialize;
#[derive(Deserialize)]
pub struct SearchResult {
pub hits: Vec<SearchHit>,
pub offset: u32,
pub limit: u32,
pub total_hits: u32,
}