mirror of https://github.com/status-im/consul.git
21 lines
379 B
Go
21 lines
379 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//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")
|
|
}
|