mirror of
https://github.com/YGGverse/aquatic-crawler.git
synced 2026-03-31 09:05:33 +00:00
7 lines
129 B
Rust
7 lines
129 B
Rust
use chrono::{DateTime, Utc};
|
|
|
|
pub struct Index {
|
|
pub time: DateTime<Utc>,
|
|
pub node: u64,
|
|
pub name: Option<String>,
|
|
}
|