Client side atproto account migrator in your web browser, along with services for backups and adversarial migrations.
pdsmoover.com
pds
atproto
migrations
moo
cow
1import {Migrator} from './pdsmoover.js';
2import {MissingBlobs} from './missingBlobs.js';
3import {BackupService} from './backup.js';
4import {PlcOps} from './plc-ops.js';
5import {MooverUtils} from './utils.js';
6import {Restore} from './restore.js';
7import {handleAndPDSResolver} from './atprotoUtils.js';
8import Alpine from 'alpinejs';
9
10
11window.Migrator = new Migrator();
12window.MissingBlobs = new MissingBlobs();
13window.BackupService = new BackupService();
14window.PlcOps = new PlcOps();
15window.MooverUtils = new MooverUtils();
16window.Restore = new Restore();
17window.handleAndPDSResolver = handleAndPDSResolver;
18
19window.Alpine = Alpine;
20
21Alpine.start();
22
23export {Migrator, MissingBlobs};
24