mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-10 12:30:25 +08:00
12 lines
148 B
Go
12 lines
148 B
Go
package grids
|
|
|
|
type LimitSizeOpt struct {
|
|
Size int64
|
|
}
|
|
|
|
func NewLimitSizeOpt(size int64) *LimitSizeOpt {
|
|
return &LimitSizeOpt{
|
|
Size: size,
|
|
}
|
|
}
|