mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-17 16:29:55 +00:00
10 lines
177 B
Go
10 lines
177 B
Go
//go:build !linux
|
|
|
|
package bootstrap
|
|
|
|
import "errors"
|
|
|
|
func systemdSocket() (*socket, error) {
|
|
return nil, errors.New("systemd socket activation is only supported on Linux")
|
|
}
|