aboutsummaryrefslogtreecommitdiffstats
path: root/http/systemd_stub.go
diff options
context:
space:
mode:
authorMarc Pervaz Boocha <mboocha@sudomsg.com>2025-08-07 22:51:34 +0530
committerMarc Pervaz Boocha <mboocha@sudomsg.com>2025-08-07 22:51:34 +0530
commit1326bb4103694d7ceac23b23329997ea2207a3f6 (patch)
tree72eb0065b597121c4e54518d303f5d15de40336d /http/systemd_stub.go
parentFixed missing signals (diff)
downloadkit-1326bb4103694d7ceac23b23329997ea2207a3f6.tar
kit-1326bb4103694d7ceac23b23329997ea2207a3f6.tar.gz
kit-1326bb4103694d7ceac23b23329997ea2207a3f6.tar.bz2
kit-1326bb4103694d7ceac23b23329997ea2207a3f6.tar.lz
kit-1326bb4103694d7ceac23b23329997ea2207a3f6.tar.xz
kit-1326bb4103694d7ceac23b23329997ea2207a3f6.tar.zst
kit-1326bb4103694d7ceac23b23329997ea2207a3f6.zip
Added File Mode to sockets and socket activation
Diffstat (limited to 'http/systemd_stub.go')
-rw-r--r--http/systemd_stub.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/http/systemd_stub.go b/http/systemd_stub.go
new file mode 100644
index 0000000..00699f3
--- /dev/null
+++ b/http/systemd_stub.go
@@ -0,0 +1,7 @@
+//go:build !linux
+
+package http
+
+func getSystemdListeners() (Listeners, error) {
+ return nil, nil // No-op on non-Linux
+}