2021-08-19 07:55:45 -05:00
|
|
|
import { updateQuestion } from '@/remote/activitypub/models/question';
|
2019-03-07 06:19:32 -06:00
|
|
|
|
|
|
|
async function main(uri: string): Promise<any> {
|
|
|
|
return await updateQuestion(uri);
|
|
|
|
}
|
|
|
|
|
2020-04-03 09:35:14 -05:00
|
|
|
const args = process.argv.slice(2);
|
|
|
|
const uri = args[0];
|
2020-04-03 03:17:46 -05:00
|
|
|
|
2020-04-03 09:35:14 -05:00
|
|
|
main(uri).then(result => {
|
|
|
|
console.log(`Done: ${result}`);
|
|
|
|
}).catch(e => {
|
|
|
|
console.warn(e);
|
|
|
|
});
|