moved postman into separate crate

This commit is contained in:
jude
2022-02-06 15:47:59 +00:00
parent d62c8c95c2
commit a3844dde9e
11 changed files with 136 additions and 47 deletions

View File

@ -323,7 +323,7 @@ async fn look(ctx: &Context, invoke: &mut CommandInvoke, args: CommandOptions) {
.iter()
.map(|reminder| reminder.display(&flags, &timezone))
.fold(0, |t, r| t + r.len())
.div_ceil(EMBED_DESCRIPTION_MAX_LENGTH);
.div_ceil(&EMBED_DESCRIPTION_MAX_LENGTH);
let pager = LookPager::new(flags, timezone);