13 lines
187 B
Go
13 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
|
|
}
|