Get last possible Msg id

This commit is contained in:
Joscha 2022-07-19 17:04:44 +02:00
parent 2beb44a17c
commit d638ba2887
4 changed files with 15 additions and 0 deletions

View file

@ -70,6 +70,10 @@ impl Msg for EuphMsg {
fn content(&self) -> Styled {
self.content.trim().into()
}
fn last_possible_id() -> Self::Id {
Snowflake::MAX
}
}
impl From<EuphRequest> for Request {