mylomen-server/service/third_api_limit.go

16 lines
179 B
Go
Raw Normal View History

2023-06-04 22:54:54 +08:00
package service
2024-02-21 12:04:40 +08:00
import "context"
2023-06-04 22:54:54 +08:00
type limit struct {
}
2024-09-29 21:12:57 +08:00
var ApiLimit limit
2023-06-04 22:54:54 +08:00
2024-02-21 12:04:40 +08:00
func (limit) BreakLimit(ctx context.Context, corpId, bizId, uid uint64) bool {
2023-06-04 22:54:54 +08:00
//
return false
}