git bankruptcy

This commit is contained in:
Julia Lange 2025-08-20 13:17:04 -07:00
parent 6d45fb2f70
commit 7519eba80c
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto
7 changed files with 201 additions and 26 deletions

View file

@ -31,6 +31,7 @@ async fn main() {
let mut router = Router::new();
let create_account_nsid: Nsid = "com.atproto.server.createAccount".parse::<Nsid>().expect("valid nsid");
router = router.add_endpoint(XrpcEndpoint::not_implemented());
router = router.add_endpoint(XrpcEndpoint::new_procedure(create_account_nsid, create_account));
router.serve().await;
}