mirror of
				https://github.com/usmannasir/cyberpanel.git
				synced 2025-10-31 10:26:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			137 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			137 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from enum import Enum, auto
 | |
| 
 | |
| 
 | |
| class IncBackupProvider(Enum):
 | |
|     LOCAL = auto()
 | |
|     SFTP = auto()
 | |
|     AWS = auto()
 | |
|     # WASABI = auto()
 |