Files
stfs/pkg/operations/operations.go
2021-12-07 22:53:59 +01:00

29 lines
383 B
Go

package operations
import (
"github.com/pojntfx/stfs/pkg/config"
)
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
}