mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-06 10:00:25 +08:00
13 lines
178 B
Go
13 lines
178 B
Go
|
|
package cache
|
||
|
|
|
||
|
|
type OptionInterface interface {
|
||
|
|
}
|
||
|
|
|
||
|
|
type PiecesOption struct {
|
||
|
|
Count int
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewPiecesOption(count int) *PiecesOption {
|
||
|
|
return &PiecesOption{Count: count}
|
||
|
|
}
|