summaryrefslogtreecommitdiff
path: root/vendor/github.com/Microsoft/hcsshim/internal/hcs/cgo.go
blob: 3669c34aa2cc1c526291a843152a2b22768f97a1 (plain)
1
2
3
4
5
6
7
package hcs

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