2020-10-13 21:10:57 -03:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package journald
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2021-01-05 05:09:41 -08:00
|
|
|
// Enable returns an error on non-Linux systems
|
2020-10-13 21:10:57 -03:00
|
|
|
func Enable() error {
|
|
|
|
return fmt.Errorf("journald is not supported in this platform")
|
|
|
|
}
|