mirror of
https://github.com/distribution/distribution.git
synced 2025-08-26 02:18:53 +00:00
8 lines
140 B
Go
8 lines
140 B
Go
package panicwrap
|
|
|
|
import "fmt"
|
|
|
|
func monitor(c *WrapConfig) (int, error) {
|
|
return -1, fmt.Errorf("Monitor is not supported on windows")
|
|
}
|