55 lines
758 B
Go
55 lines
758 B
Go
package operations
|
|
|
|
import (
|
|
"github.com/pojntfx/stfs/pkg/config"
|
|
)
|
|
|
|
func Restore(
|
|
state config.StateConfig,
|
|
pipes config.PipeConfig,
|
|
crypto config.CryptoConfig,
|
|
|
|
recordSize int,
|
|
from string,
|
|
to string,
|
|
flatten bool,
|
|
) error {
|
|
return nil
|
|
}
|
|
|
|
func Update(
|
|
state config.StateConfig,
|
|
pipes config.PipeConfig,
|
|
crypto config.CryptoConfig,
|
|
|
|
recordSize int,
|
|
from string,
|
|
overwrite bool,
|
|
compressionLevel string,
|
|
) error {
|
|
return nil
|
|
}
|
|
|
|
func Delete(
|
|
state config.StateConfig,
|
|
pipes config.PipeConfig,
|
|
crypto config.CryptoConfig,
|
|
|
|
recordSize int,
|
|
name string,
|
|
) error {
|
|
return nil
|
|
}
|
|
|
|
func Move(
|
|
state config.StateConfig,
|
|
pipes config.PipeConfig,
|
|
crypto config.CryptoConfig,
|
|
|
|
recordSize int,
|
|
from string,
|
|
to string,
|
|
) error {
|
|
return nil
|
|
}
|