mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 20:23:49 +01:00
14148f6c4a
Resolve #7779
15 lines
315 B
TypeScript
15 lines
315 B
TypeScript
import { updateQuestion } from '@/remote/activitypub/models/question';
|
|
|
|
async function main(uri: string): Promise<any> {
|
|
return await updateQuestion(uri);
|
|
}
|
|
|
|
const args = process.argv.slice(2);
|
|
const uri = args[0];
|
|
|
|
main(uri).then(result => {
|
|
console.log(`Done: ${result}`);
|
|
}).catch(e => {
|
|
console.warn(e);
|
|
});
|