mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-06 10:00:25 +08:00
12 lines
184 B
Go
12 lines
184 B
Go
package grids
|
|
|
|
type RecycleIntervalOpt struct {
|
|
Interval int
|
|
}
|
|
|
|
func NewRecycleIntervalOpt(interval int) *RecycleIntervalOpt {
|
|
return &RecycleIntervalOpt{
|
|
Interval: interval,
|
|
}
|
|
}
|