mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-26 02:14:44 +01:00
16 lines
338 B
Go
16 lines
338 B
Go
|
package pruning
|
||
|
|
||
|
type KeepNotReplicated struct {
|
||
|
forceConstructor struct{}
|
||
|
}
|
||
|
|
||
|
func (*KeepNotReplicated) KeepRule(snaps []Snapshot) (destroyList []Snapshot) {
|
||
|
return filterSnapList(snaps, func(snapshot Snapshot) bool {
|
||
|
return snapshot.Replicated()
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func NewKeepNotReplicated() *KeepNotReplicated {
|
||
|
return &KeepNotReplicated{}
|
||
|
}
|