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