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")
|
||
|
}
|