[READ-ONLY] Mirror of https://github.com/flo-bit/skywatched. review movies and tv shows, based on at proto
skywatched.app
346 B
15 lines
1import fs from 'fs';
2
3async function main() {
4 const backendUrl = 'https://skywatched-jetstream.fly.dev';
5
6 const response = await fetch(`${backendUrl}/api/author-dids`);
7 const authorDids = await response.json();
8
9 // save to file
10 fs.writeFileSync('author-dids.json', JSON.stringify(authorDids, null, 2));
11
12 console.log(authorDids);
13}
14
15main();