14 lines
187 B
Go
14 lines
187 B
Go
|
//go:build windows
|
||
|
|
||
|
package agent
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
func watchForFlushSignal(_ chan os.Signal) {
|
||
|
// not supported
|
||
|
}
|
||
|
|
||
|
func stopListeningForFlushSignal(_ chan os.Signal) {
|
||
|
// not supported
|
||
|
}
|