mirror of
				https://github.com/restic/restic.git
				synced 2025-11-04 04:16:58 +00:00 
			
		
		
		
	
		
			
	
	
		
			9 lines
		
	
	
		
			126 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
		
			126 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| 
								 | 
							
								package migrations
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								// All contains all migrations.
							 | 
						||
| 
								 | 
							
								var All []Migration
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								func register(m Migration) {
							 | 
						||
| 
								 | 
							
									All = append(All, m)
							 | 
						||
| 
								 | 
							
								}
							 |