mirror of
				https://github.com/containers/podman.git
				synced 2025-11-04 17:07:20 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			279 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			279 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build tools
 | 
						|
 | 
						|
package tools
 | 
						|
 | 
						|
// Importing the packages here will allow to vendor those via
 | 
						|
// `go mod vendor`.
 | 
						|
 | 
						|
import (
 | 
						|
	_ "github.com/cpuguy83/go-md2man/v2"
 | 
						|
	_ "github.com/onsi/ginkgo/v2/ginkgo"
 | 
						|
	_ "github.com/vbatts/git-validation"
 | 
						|
	_ "golang.org/x/tools/cmd/goimports"
 | 
						|
)
 |