mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-10-31 16:58:17 +00:00 
			
		
		
		
	Moves vendoring over to Go modules. Fixes issues found by Go Vet in Go 1.16 Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
		
			
				
	
	
		
			14 lines
		
	
	
		
			264 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			264 B
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
| package hcsshim
 | |
| 
 | |
| import (
 | |
| 	"github.com/Microsoft/hcsshim/internal/hns"
 | |
| )
 | |
| 
 | |
| type HNSSupportedFeatures = hns.HNSSupportedFeatures
 | |
| 
 | |
| type HNSAclFeatures = hns.HNSAclFeatures
 | |
| 
 | |
| func GetHNSSupportedFeatures() HNSSupportedFeatures {
 | |
| 	return hns.GetHNSSupportedFeatures()
 | |
| }
 |