1
0
mirror of https://github.com/fumiama/ReiBot.git synced 2026-06-08 03:55:12 +08:00

chore: make lint happy

This commit is contained in:
源文雨
2025-05-13 20:31:04 +09:00
parent 1683db37d0
commit 617956e3e2
4 changed files with 11 additions and 11 deletions

View File

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