aboutsummaryrefslogtreecommitdiffstats
path: root/http/systemd_linux.go
diff options
context:
space:
mode:
authorMarc Pervaz Boocha <mboocha@sudomsg.com>2026-02-24 23:43:18 +0530
committerMarc Pervaz Boocha <mboocha@sudomsg.com>2026-02-24 23:43:18 +0530
commit37809b8c855250b931ec592f12fd548ddfa1dabe (patch)
treee9fbb747cc8a29fc031dba3de77919c94edebc4a /http/systemd_linux.go
parentAdded more logging stuff (diff)
downloadkit-37809b8c855250b931ec592f12fd548ddfa1dabe.tar
kit-37809b8c855250b931ec592f12fd548ddfa1dabe.tar.gz
kit-37809b8c855250b931ec592f12fd548ddfa1dabe.tar.bz2
kit-37809b8c855250b931ec592f12fd548ddfa1dabe.tar.lz
kit-37809b8c855250b931ec592f12fd548ddfa1dabe.tar.xz
kit-37809b8c855250b931ec592f12fd548ddfa1dabe.tar.zst
kit-37809b8c855250b931ec592f12fd548ddfa1dabe.zip
Split net packages
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
-}