forked from TrueCloudLab/rclone
12 lines
117 B
Go
12 lines
117 B
Go
|
// +build !linux android
|
||
|
|
||
|
package docker
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
func systemdActivationFiles() []*os.File {
|
||
|
return nil
|
||
|
}
|