mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
13 lines
192 B
Go
13 lines
192 B
Go
|
// +build !linux
|
||
|
|
||
|
package journald
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
//Enabled returns an error on non-Linux systems
|
||
|
func Enable() error {
|
||
|
return fmt.Errorf("journald is not supported in this platform")
|
||
|
}
|