mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-19 11:19:58 +02: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")
|
|
}
|