mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 23:20:26 +08:00
13 lines
355 B
Go
13 lines
355 B
Go
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
//go:build !plus
|
|
|
|
package models
|
|
|
|
import "github.com/iwind/TeaGo/dbs"
|
|
|
|
// FireNodeThreshold 触发相关阈值设置
|
|
func (this *NodeThresholdDAO) FireNodeThreshold(tx *dbs.Tx, role string, nodeId int64, item string) error {
|
|
// stub
|
|
return nil
|
|
}
|