new laptop setup

This commit is contained in:
2022-12-24 16:34:17 +01:00
parent 5b95621d04
commit 31b47e892d
55 changed files with 789 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
use super::super::feed;
use super::super::user::user::User;
use diesel::{Associations, Identifiable, Queryable};
#[derive(Queryable, Identifiable, Associations)]
#[diesel(belongs_to(User))]
#[diesel(table_name=feed)]
pub struct Feed {
pub id: i32,
pub user_id: i32,
pub title: String,
pub url: String,
}
+1
View File
@@ -0,0 +1 @@
pub mod feed;
+2
View File
@@ -0,0 +1,2 @@
+1
View File
@@ -0,0 +1 @@
mod feed_item;
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File
Regular → Executable
View File