Working through airport query params

This commit is contained in:
2025-04-07 08:13:22 -04:00
parent 769762dfa7
commit b770c343ec
10 changed files with 171 additions and 286 deletions

View File

@@ -168,8 +168,8 @@ pub async fn delete_file(path: &str) -> ApiResult<ResponseData> {
#[derive(Serialize, Deserialize)]
pub struct Paged<T> {
pub data: T,
pub page: i32,
pub limit: i32,
pub page: u32,
pub limit: u32,
pub total: i64,
}