mirror of
				https://github.com/Instadapp/trustwallet-assets.git
				synced 2024-07-29 22:37:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			308 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			308 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { processChanges } from "../generic/history";
 | |
| 
 | |
| export async function main(): Promise<void> {
 | |
|     try {
 | |
|         const ret = await processChanges();
 | |
|         if (ret != 0) {
 | |
|             process.exit(ret);
 | |
|         }
 | |
|     } catch(err) {
 | |
|         console.error(err);
 | |
|         process.exit(1);
 | |
|     }
 | |
| }
 | |
| 
 | |
| main();
 | 
