Sharkey/src/tools/refresh-question.ts

19 lines
386 B
TypeScript
Raw Normal View History

import { updateQuestion } from '../remote/activitypub/models/question';
async function main(uri: string): Promise<any> {
return await updateQuestion(uri);
}
export default () => {
const args = process.argv.slice(3);
const uri = args[0];
2020-04-03 11:17:46 +03:00
main(uri).then(result => {
console.log(`Done: ${result}`);
process.exit(0);
}).catch(e => {
console.warn(e);
process.exit(1);
});
}