16 lines
179 B
Go
16 lines
179 B
Go
package service
|
|
|
|
import "context"
|
|
|
|
type limit struct {
|
|
}
|
|
|
|
var ApiLimit limit
|
|
|
|
func (limit) BreakLimit(ctx context.Context, corpId, bizId, uid uint64) bool {
|
|
|
|
//
|
|
|
|
return false
|
|
}
|