mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 03:17:28 +08:00
13 lines
172 B
Go
13 lines
172 B
Go
//go:build !linux || android
|
|
|
|
package docker
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
//lint:ignore U1000 unused when not building linux
|
|
func systemdActivationFiles() []*os.File {
|
|
return nil
|
|
}
|