mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 05:45:46 +00:00
18 lines
308 B
Go
18 lines
308 B
Go
//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")
|
|
}
|