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