diff options
author | Marc Pervaz Boocha <mboocha@sudomsg.com> | 2025-08-07 22:51:34 +0530 |
---|---|---|
committer | Marc Pervaz Boocha <mboocha@sudomsg.com> | 2025-08-07 22:51:34 +0530 |
commit | 1326bb4103694d7ceac23b23329997ea2207a3f6 (patch) | |
tree | 72eb0065b597121c4e54518d303f5d15de40336d /http/systemd_stub.go | |
parent | Fixed missing signals (diff) | |
download | kit-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 '')
-rw-r--r-- | http/systemd_stub.go | 7 |
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 +} |