2017-05-25 23:25:44 +00:00
|
|
|
package snapshot
|
|
|
|
|
2017-05-26 17:20:41 +00:00
|
|
|
import (
|
2017-05-30 21:17:04 +00:00
|
|
|
"github.com/containerd/containerd/snapshot"
|
2017-05-26 17:20:41 +00:00
|
|
|
)
|
|
|
|
|
2017-05-25 23:25:44 +00:00
|
|
|
// Snapshotter defines interface that any snapshot implementation should satisfy
|
|
|
|
type Snapshotter interface {
|
2017-05-31 22:05:22 +00:00
|
|
|
snapshot.Snapshotter
|
2017-05-25 23:25:44 +00:00
|
|
|
}
|