mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
11 lines
321 B
Go
11 lines
321 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"
|
||
|
|
|
||
|
|
func (this *UserPlanStatDAO) IncreaseUserPlanStat(tx *dbs.Tx, userPlanId int64, trafficBytes int64, countRequests int64) error {
|
||
|
|
return nil
|
||
|
|
}
|