1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-29 21:04:23 +02:00
rclone/cmd/serve/docker/systemd_unsupported.go

14 lines
197 B
Go

//go:build !linux || android
// +build !linux android
package docker
import (
"os"
)
//lint:ignore U1000 unused when not building linux
func systemdActivationFiles() []*os.File {
return nil
}