Files
EdgeAPI/internal/db/models/user_plan_stat_dao_community.go

17 lines
490 B
Go
Raw Normal View History

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 {
// stub
return nil
}
func (this *UserPlanStatDAO) ResetUserPlanStatsWithUserPlanId(tx *dbs.Tx, userPlanId int64) error {
// stub
2023-09-06 16:30:47 +08:00
return nil
}