summaryrefslogtreecommitdiff
path: root/src/emotes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/emotes.rs')
-rw-r--r--src/emotes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emotes.rs b/src/emotes.rs
index c602f84..608f7a9 100644
--- a/src/emotes.rs
+++ b/src/emotes.rs
@@ -1,7 +1,7 @@
use reqwest::Error;
use serde::{Deserialize, Serialize};
-pub trait EmoteBase {
+pub trait EmoteBase: Send + Sync {
fn get_id(&self) -> &String;
fn get_code(&self) -> &String;
fn get_original_code(&self) -> &Option<String>;