2024-07-27 14:15:25 +08:00
|
|
|
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
|
2023-09-06 16:30:47 +08:00
|
|
|
//go:build !plus
|
|
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
import "github.com/iwind/TeaGo/dbs"
|
|
|
|
|
|
2023-12-19 14:56:44 +08:00
|
|
|
func (this *UserPlanStatDAO) IncreaseUserPlanStat(tx *dbs.Tx, userPlanId int64, trafficBytes int64, countRequests int64, countWebsocketConnections int64) error {
|
2024-04-12 11:35:52 +08:00
|
|
|
// stub
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *UserPlanStatDAO) ResetUserPlanStatsWithUserPlanId(tx *dbs.Tx, userPlanId int64) error {
|
|
|
|
|
// stub
|
2023-09-06 16:30:47 +08:00
|
|
|
return nil
|
|
|
|
|
}
|