This repository has been archived on 2026-06-01. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
lamassu-server/packages/server/bin/lamassu-ofac-update
2025-12-31 19:04:13 +01:00

11 lines
219 B
JavaScript
Executable file

#!/usr/bin/env node
require('../lib/environment-helper')
const ofac = require('../lib/ofac/update')
console.log('Updating OFAC databases.')
ofac.update()
.then(() => console.log('Success.'))
.catch(console.log)