removing unnecessary self

This commit is contained in:
Chris Cochrun 2024-09-26 05:33:55 -05:00
parent e8477a8a19
commit a032bd555b

View file

@ -204,8 +204,8 @@ pub struct Video {
pub struct VideoModelRust {
count: i32,
highest_id: i32,
videos: Vec<self::Video>,
inner_videos: Vec<self::Video>,
videos: Vec<Video>,
inner_videos: Vec<Video>,
db: SqliteConnection,
}