mirror of
https://wget.la/https://github.com/leookun/cursor-byok
synced 2026-08-20 21:17:47 +08:00
10 lines
156 B
Go
10 lines
156 B
Go
//go:build !windows
|
|
|
|
package client
|
|
|
|
import "os"
|
|
|
|
func replaceExportFile(sourcePath, targetPath string) error {
|
|
return os.Rename(sourcePath, targetPath)
|
|
}
|