The glamourous AI coding agent for your favourite terminal 💘
1package sysfs 2 3import ( 4 "os" 5 6 "github.com/tetratelabs/wazero/experimental/sys" 7) 8 9func rename(from, to string) sys.Errno { 10 if from == to { 11 return 0 12 } 13 return sys.UnwrapOSError(os.Rename(from, to)) 14}