fix proc.Done not found in windows (#1026)

This commit is contained in:
Kevin Wan
2021-09-12 15:41:33 +08:00
committed by GitHub
parent 0b6bc69afa
commit 3f47251892
6 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
//go:build !linux
// +build !linux
package stat
// Report reports given message.
func Report(string) {
}
// SetReporter sets the given reporter.
func SetReporter(func(string)) {
}