12 lines
166 B
Go
12 lines
166 B
Go
|
//go:build !linux
|
||
|
|
||
|
package stat
|
||
|
|
||
|
// Report reports given message.
|
||
|
func Report(string) {
|
||
|
}
|
||
|
|
||
|
// SetReporter sets the given reporter.
|
||
|
func SetReporter(func(string)) {
|
||
|
}
|