mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 18:08:51 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			175 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			175 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
 | |
| 
 | |
| package machine
 | |
| 
 | |
| import (
 | |
| 	"runtime"
 | |
| )
 | |
| 
 | |
| func DetermineMachineArch() string {
 | |
| 	return runtime.GOARCH
 | |
| }
 | 
