chore: use cmp (#568)

This commit is contained in:
UUBulb
2024-12-08 20:21:35 +08:00
committed by GitHub
parent 96b254a7b1
commit 2bc3d38b83
6 changed files with 10 additions and 47 deletions
+2 -2
View File
@@ -1,6 +1,7 @@
package singleton
import (
"cmp"
"fmt"
"slices"
"strings"
@@ -11,7 +12,6 @@ import (
"github.com/robfig/cron/v3"
"github.com/nezhahq/nezha/model"
"github.com/nezhahq/nezha/pkg/utils"
pb "github.com/nezhahq/nezha/proto"
)
@@ -84,7 +84,7 @@ func UpdateCronList() {
CronList = append(CronList, c)
}
slices.SortFunc(CronList, func(a, b *model.Cron) int {
return utils.Compare(a.ID, b.ID)
return cmp.Compare(a.ID, b.ID)
})
}