feat(config): 支持完整配置导入导出

This commit is contained in:
上玄
2026-08-12 09:34:02 +08:00
parent 988ba63d40
commit 3fc04eeb4f
17 changed files with 1047 additions and 91 deletions
@@ -0,0 +1,9 @@
//go:build !windows
package client
import "os"
func replaceExportFile(sourcePath, targetPath string) error {
return os.Rename(sourcePath, targetPath)
}