8 lines
106 B
Go
8 lines
106 B
Go
|
package restorer
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
func notEmptyDirError() error {
|
||
|
return syscall.ERROR_DIR_NOT_EMPTY
|
||
|
}
|