mirror of
https://github.com/restic/restic.git
synced 2026-02-17 06:23:56 +00:00
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
|
|
}
|