calckey/src/tools/refresh-question.ts

19 lines
387 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];
main(uri).then(result => {
console.log(`Done: ${result}`);
process.exit(0);
}).catch(e => {
console.warn(e);
process.exit(1);
});
}