mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 15:00:26 +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}
|
|
}
|