mirror of
https://github.com/restic/restic.git
synced 2026-02-03 12:29:37 -05:00
9 lines
199 B
Go
9 lines
199 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package fs
|
|
|
|
// enableProcessPrivileges enables additional file system privileges for the current process.
|
|
func enableProcessPrivileges() error {
|
|
return nil
|
|
}
|