Files
cursor-byok/internal/client/config_transfer_replace_unix.go
T

10 lines
156 B
Go

//go:build !windows
package client
import "os"
func replaceExportFile(sourcePath, targetPath string) error {
return os.Rename(sourcePath, targetPath)
}