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

Get user custom emojies

This commit is contained in:
2020-05-26 19:45:38 +02:00
parent 2b1161c3f0
commit c4f8e5fa97
9 changed files with 106 additions and 4 deletions

13
src/data/custom_emoji.rs Normal file
View File

@ -0,0 +1,13 @@
//! User custom emoji
//!
//! @author Pierre Hubert
use crate::data::user::UserID;
#[derive(Debug)]
pub struct CustomEmoji {
pub id: u64,
pub user_id: UserID,
pub shortcut: String,
pub path: String,
}

View File

@ -5,4 +5,5 @@ pub mod http_request_handler;
pub mod api_client;
pub mod user;
pub mod user_token;
pub mod user_token;
pub mod custom_emoji;