mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
e5c69bd387
* add space at the start of comments * undo case change
13 lines
192 B
Go
13 lines
192 B
Go
// +build !linux
|
|
|
|
package journald
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// Enable returns an error on non-Linux systems
|
|
func Enable() error {
|
|
return fmt.Errorf("journald is not supported in this platform")
|
|
}
|