1
0
mirror of https://github.com/fumiama/ReiBot.git synced 2026-06-05 00:50:25 +08:00

chore: make lint happy

This commit is contained in:
源文雨
2025-05-13 20:37:44 +09:00
parent 252105a8d9
commit 3010930da7

View File

@@ -9,12 +9,12 @@ type FutureEvent struct {
}
// NewFutureEvent 创建一个FutureEvent, 并返回其指针
func NewFutureEvent(typ string, prio int, Block bool, rule ...Rule) *FutureEvent {
func NewFutureEvent(typ string, prio int, blk bool, rule ...Rule) *FutureEvent {
return &FutureEvent{
Type: typ,
Priority: prio,
Rule: rule,
Block: Block,
Block: blk,
}
}