18 lines
231 B
Go
18 lines
231 B
Go
package operations
|
|
|
|
import (
|
|
"github.com/pojntfx/stfs/pkg/config"
|
|
)
|
|
|
|
func Move(
|
|
state config.StateConfig,
|
|
pipes config.PipeConfig,
|
|
crypto config.CryptoConfig,
|
|
|
|
recordSize int,
|
|
from string,
|
|
to string,
|
|
) error {
|
|
return nil
|
|
}
|