mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-10 04:20:27 +08:00
12 lines
152 B
Go
12 lines
152 B
Go
package grids
|
|
|
|
type LimitCountOpt struct {
|
|
Count int
|
|
}
|
|
|
|
func NewLimitCountOpt(count int) *LimitCountOpt {
|
|
return &LimitCountOpt{
|
|
Count: count,
|
|
}
|
|
}
|