blob: 2003332330a746551ef88a045da5a5e39634ded2 (
plain)
1
2
3
4
5
6
7
|
package hcsshim
import "C"
// This import is needed to make the library compile as CGO because HCSSHIM
// only works with CGO due to callbacks from HCS comming back from a C thread
// which is not supported without CGO. See https://github.com/golang/go/issues/10973
|