mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			261 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			261 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package hcsshim
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/Microsoft/hcsshim/internal/hns"
 | 
						|
)
 | 
						|
 | 
						|
type HNSGlobals = hns.HNSGlobals
 | 
						|
type HNSVersion = hns.HNSVersion
 | 
						|
 | 
						|
var (
 | 
						|
	HNSVersion1803 = hns.HNSVersion1803
 | 
						|
)
 | 
						|
 | 
						|
func GetHNSGlobals() (*HNSGlobals, error) {
 | 
						|
	return hns.GetHNSGlobals()
 | 
						|
}
 |