stakpak_shared/models/
indexing.rs1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, Serialize, Deserialize)]
4pub struct IndexingStatus {
5 pub indexed: bool,
6 pub reason: String,
7 pub file_count: usize,
8 pub timestamp: chrono::DateTime<chrono::Utc>,
9}