summary refs log tree commit diff
path: root/src/system/types.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/system/types.rs')
-rw-r--r--src/system/types.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/system/types.rs b/src/system/types.rs
index 862ddd1..e8d14a6 100644
--- a/src/system/types.rs
+++ b/src/system/types.rs
@@ -1,10 +1,11 @@
 use twilight_model::channel::Message;
-use twilight_model::id::marker::{MessageMarker, UserMarker};
+use twilight_model::id::marker::{ChannelMarker, MessageMarker, UserMarker};
 use twilight_model::id::Id;
 use twilight_model::util::Timestamp;
 
 pub type MemberId = usize;
 pub type MessageId = Id<MessageMarker>;
+pub type ChannelId = Id<ChannelMarker>;
 pub type UserId = Id<UserMarker>;
 
 pub type Status = twilight_model::gateway::presence::Status;