21 lines
378 B
Go
21 lines
378 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//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")
|
|
}
|