From 8b716d49ed019213d91a45f094684f26fac289bd Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Wed, 2 Oct 2024 02:22:34 -0600 Subject: refactor gateway and client together into bot struct --- src/system/types.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/system/types.rs') 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; +pub type ChannelId = Id; pub type UserId = Id; pub type Status = twilight_model::gateway::presence::Status; -- cgit 1.4.1