mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 18:08:51 +08:00 
			
		
		
		
	 a45ba06d02
			
		
	
	a45ba06d02
	
	
	
		
			
			In #20538, I was asked to consider refactoring the new OCI pull code from within the generic machine directory. This is something I had tried when originally coding it but it became apparent that a much larger refactor to prevent circular deps was needed. Because I did not want to pollute the initial PR with that refactor, I asked for the PR to merge first. This is the refactor that needed to be done. Signed-off-by: Brent Baude <bbaude@redhat.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			227 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			227 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package define
 | |
| 
 | |
| type Artifact int64
 | |
| 
 | |
| const (
 | |
| 	Qemu Artifact = iota
 | |
| 	HyperV
 | |
| 	AppleHV
 | |
| 	None
 | |
| )
 | |
| 
 | |
| func (a Artifact) String() string {
 | |
| 	switch a {
 | |
| 	case HyperV:
 | |
| 		return "hyperv"
 | |
| 	case AppleHV:
 | |
| 		return "applehv"
 | |
| 	}
 | |
| 	return "qemu"
 | |
| }
 |