FoundKey/packages/backend/tools/refresh-question.ts

15 lines
315 B
TypeScript
Raw Normal View History

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