implement option to export index collected as the static rss feed, set save_torrents as false by default

This commit is contained in:
yggverse 2025-07-06 22:51:51 +03:00
parent c206a06c25
commit 738fee1a88
6 changed files with 272 additions and 72 deletions

7
src/index.rs Normal file
View file

@ -0,0 +1,7 @@
use chrono::{DateTime, Utc};
pub struct Index {
pub time: DateTime<Utc>,
pub node: u64,
pub name: Option<String>,
}