16 lines
216 B
Go
16 lines
216 B
Go
|
package service
|
||
|
|
||
|
import "code.freebrio.com/fb-go/lib/context"
|
||
|
|
||
|
type limit struct {
|
||
|
}
|
||
|
|
||
|
var ThirdApiLimit limit
|
||
|
|
||
|
func (limit) BreakLimit(ctx context.GormWithZap, corpId, bizId, uid uint64) bool {
|
||
|
|
||
|
//
|
||
|
|
||
|
return false
|
||
|
}
|