mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 12:16:38 +00:00
15 lines
205 B
Go
15 lines
205 B
Go
|
package sysfs
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/tetratelabs/wazero/experimental/sys"
|
||
|
)
|
||
|
|
||
|
func rename(from, to string) sys.Errno {
|
||
|
if from == to {
|
||
|
return 0
|
||
|
}
|
||
|
return sys.UnwrapOSError(os.Rename(from, to))
|
||
|
}
|