Files
shop-crm-agent/internal/config/replace_unix.go
T

10 lines
134 B
Go
Raw Normal View History

//go:build !windows
package config
import "os"
func replaceFile(source, target string) error {
return os.Rename(source, target)
}