mylomen-server/service/third_api_limit.go
shaoyongjun 73c5062c45 to:sync
2024-02-21 12:04:40 +08:00

16 lines
184 B
Go

package service
import "context"
type limit struct {
}
var ThirdApiLimit limit
func (limit) BreakLimit(ctx context.Context, corpId, bizId, uid uint64) bool {
//
return false
}