2021-09-09 12:25:25 +00:00
|
|
|
//go:build !linux || android
|
2021-01-03 00:05:52 +00:00
|
|
|
// +build !linux android
|
|
|
|
|
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
2022-06-24 16:34:37 +00:00
|
|
|
//lint:ignore U1000 unused when not building linux
|
2021-01-03 00:05:52 +00:00
|
|
|
func systemdActivationFiles() []*os.File {
|
|
|
|
return nil
|
|
|
|
}
|