1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-06-20 16:35:17 +00:00

Continue to deprecate old movie system

This commit is contained in:
2021-02-13 11:26:06 +01:00
parent 3a22c89b87
commit 9949f1dccf
3 changed files with 0 additions and 32 deletions

View File

@ -22,7 +22,6 @@ pub mod global_search_result;
pub mod friend;
pub mod friendship_status;
pub mod post;
pub mod movie;
pub mod survey;
pub mod comment;
pub mod new_survey;

View File

@ -1,14 +0,0 @@
//! # Movie information
//!
//! @author Pierre Hubert
use crate::data::user::UserID;
pub struct Movie {
pub id: u64,
pub user_id: UserID,
pub name: String,
pub uri: String,
pub file_type: String,
pub size: usize,
}