forked from
lewis.moe/bspds-sandbox
I've been saying "PDSes seem easy enough, they're what, some CRUD to a db? I can do that in my sleep". well i'm sleeping rn so let's go
1pub mod account;
2pub mod did;
3pub mod plc;
4
5pub use account::create_account;
6pub use did::{
7 get_recommended_did_credentials, resolve_handle, update_handle, user_did_doc,
8 well_known_atproto_did, well_known_did,
9};
10pub use plc::{request_plc_operation_signature, sign_plc_operation, submit_plc_operation};