mirror of
https://github.com/kastenhq/kubestr.git
synced 2024-12-14 11:57:56 +00:00
8d5674a59e
* starting with the validation * Create application and use mocks * Added snapshotter * cleanup and full execution test * last bit of wiring * Nil checks for comments * removing debug print * unused variable
11 lines
224 B
Go
11 lines
224 B
Go
package csi
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/kastenhq/kubestr/pkg/csi/types"
|
|
)
|
|
|
|
type CSI interface {
|
|
RunSnapshotRestore(ctx context.Context, args *types.CSISnapshotRestoreArgs) (*types.CSISnapshotRestoreResults, error)
|
|
}
|