* Add a new lint rule to the Makefile Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com> * Fix linter errors Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com> * Allow replacing the default apt mirror Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			282 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			282 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package specs
 | 
						|
 | 
						|
import oci "github.com/opencontainers/runtime-spec/specs-go"
 | 
						|
 | 
						|
type (
 | 
						|
	// ProcessSpec aliases the platform process specs
 | 
						|
	ProcessSpec oci.Process
 | 
						|
	// Spec aliases the platform oci spec
 | 
						|
	Spec oci.Spec
 | 
						|
	// Rlimit aliases the platform resource limit
 | 
						|
	Rlimit oci.Rlimit
 | 
						|
)
 |