Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm

thanks clippy

Changed files
+1 -3
spacedust
+1 -3
spacedust/src/subscriber.rs
···
let target_did = if link.target.starts_with("did:") {
link.target.clone()
} else {
-
let Some(rest) = link.target.strip_prefix("at://") else {
-
return None
-
};
+
let rest = link.target.strip_prefix("at://")?;
if let Some((did, _)) = rest.split_once("/") {
did
} else {