mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
13 lines
196 B
TypeScript
13 lines
196 B
TypeScript
|
import { updateAll } from "../action/update-all";
|
||
|
|
||
|
export function main() {
|
||
|
try {
|
||
|
updateAll();
|
||
|
} catch(err) {
|
||
|
console.error(err);
|
||
|
process.exit(1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
main();
|