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:
13
src/data/custom_emoji.rs
Normal file
13
src/data/custom_emoji.rs
Normal 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,
|
||||
}
|
@ -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;
|
Reference in New Issue
Block a user