Command-line tool for managing your AT Protocol bookmarks. Works with kipclip.com and any app that uses the same record format. kipclip.com
atproto rust kipclip bookmarks tags toread atprotocol
at main 9 lines 140 B view raw
1use miette::Result; 2 3use crate::kipclip::auth; 4 5pub fn run() -> Result<()> { 6 auth::logout()?; 7 println!("Logged out."); 8 Ok(()) 9}