chore: remove unused module (#2102)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>pull/24376/head
parent
427c5743f3
commit
4f8b2fdb69
|
@ -1,17 +0,0 @@
|
|||
use chrono::{DateTime, Utc};
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
/// The persistence metadata associated with a given segment
|
||||
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
|
||||
pub struct SegmentPersistence {
|
||||
pub location: String,
|
||||
pub time: DateTime<Utc>,
|
||||
}
|
||||
|
||||
/// The summary information for a segment
|
||||
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
|
||||
pub struct SegmentSummary {
|
||||
pub size: u64,
|
||||
pub created_at: DateTime<Utc>,
|
||||
pub persisted: Option<SegmentPersistence>,
|
||||
}
|
Loading…
Reference in New Issue