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