mylomen-server/service/third_api_limit.go

16 lines
184 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 {
}
var ThirdApiLimit limit
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
}