mirror of
https://github.com/restic/restic.git
synced 2026-05-03 09:25:24 +00:00
d14823eb81
Add tests to verify privileges' effects.
10 lines
199 B
Go
10 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
|
|
}
|