Update table feed items

This commit is contained in:
2023-10-08 18:13:58 +02:00
parent ec35f66a88
commit e56ba37e7e
12 changed files with 136 additions and 14 deletions
+9
View File
@@ -0,0 +1,9 @@
use serde::Deserialize;
#[derive(Deserialize)]
pub struct NewFeedItemSchema {
pub content: String,
pub feed_id: i32,
pub url: String,
pub title: String,
}