categraf/inputs/systemd/systemd_nonlinux.go

16 lines
200 B
Go

//go:build !linux
// +build !linux
package systemd
import (
"flashcat.cloud/categraf/types"
)
func (s *Systemd) Init() error {
return nil
}
func (s *Systemd) Gather(slist *types.SampleList) {
}