open-consul/agent/checks/os_service_unix.go

18 lines
308 B
Go
Raw Normal View History

2022-06-07 17:27:14 +00:00
//go:build !windows
// +build !windows
package checks
import "fmt"
type OSServiceClient struct {
}
func NewOSServiceClient() (*OSServiceClient, error) {
return nil, fmt.Errorf("not implemented")
}
func (client *OSServiceClient) Check(serviceName string) error {
return fmt.Errorf("not implemented")
}