mirror of
https://github.com/restic/restic.git
synced 2025-12-08 06:09:56 +00:00
8 lines
180 B
Go
8 lines
180 B
Go
//go:build !windows
|
|
|
|
package fs
|
|
|
|
// enableProcessPrivileges enables additional file system privileges for the current process.
|
|
func enableProcessPrivileges() error {
|
|
return nil
|
|
}
|