fix: docs
All checks were successful
Build / Build (push) Successful in 46s
Build / docker (push) Successful in 16s

This commit is contained in:
파링 2026-01-07 15:48:15 +09:00
parent c0296f698a
commit a48bb14509
Signed by: paring
SSH key fingerprint: SHA256:8uCHhCpn/gVOLEaTolmbub9kfM6XBxWkIWmHxUZoWWk
2 changed files with 3 additions and 2 deletions

View file

@ -77,12 +77,14 @@ impl Handler {
- `reactions`: map<string, i64> ( - )
- `channel`: string ( ID)
- `category`: string ( ID, UNIT)
- `removed`: bool ( )
`result("채널ID", , "메시지에 사용될 아이콘(이모지 권장)")` (unit이나 )
\*
:
```rs
if reactions[""] >= 3 {
if reactions[""] >= 3 || removed {
return result("0000000000000000000", reactions[""], "")
}
```"#,

View file

@ -11,7 +11,6 @@ use serenity::{
Reaction, StickerFormatType, StickerItem, Webhook, WebhookId,
},
async_trait,
futures::lock::Mutex,
small_fixed_array::{FixedArray, FixedString},
};
use sqlx::{PgExecutor, PgPool};