mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
0b1a777d62
* ran gofmt @ v1.17, these are the resulting changes * fix some flaky tests that are tripping up this PR * gofmt Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
14 lines
210 B
Go
14 lines
210 B
Go
//go:build !linux
|
|
// +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")
|
|
}
|