github.com/choria-io/go-choria@v0.28.1-0.20240416190746-b3bf9c7d5a45/aagent/watchers/nagioswatcher/builtin_goss_windows.go (about) 1 // Copyright (c) 2017-2021, R.I. Pienaar and the Choria Project contributors 2 // 3 // SPDX-License-Identifier: Apache-2.0 4 5 //go:build windows 6 // +build windows 7 8 package nagioswatcher 9 10 func (w *Watcher) watchUsingGoss() (state State, output string, err error) { 11 return UNKNOWN, "UNKNOWN: goss is not supported on windows", nil 12 }