aboutsummaryrefslogtreecommitdiffstats
path: root/http/systemd_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'http/systemd_linux.go')
-rw-r--r--http/systemd_linux.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/http/systemd_linux.go b/http/systemd_linux.go
deleted file mode 100644
index bf1e6a1..0000000
--- a/http/systemd_linux.go
+++ /dev/null
@@ -1,16 +0,0 @@
-//go:build linux
-
-package http
-
-import (
- "github.com/coreos/go-systemd/v22/activation"
-)
-
-func getSystemdListeners() (Listeners, error) {
- lns, err := activation.Listeners()
- if err != nil {
- return nil, err
- }
-
- return lns, nil
-}