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

Configure Feed

Select the types of activity you want to include in your feed.

rustfmt hates me

videah 3b6086f8 8c8a14fc

+3 -3
+3 -3
README.md
··· 21 21 if let Commit(commit) = event { 22 22 match commit { 23 23 CommitEvent::Create { info, commit } => { 24 - println ! ("Received create event: {:#?}", info); 24 + println!("Received create event: {:#?}", info); 25 25 } 26 26 CommitEvent::Update { info, commit } => { 27 - println ! ("Received update event: {:#?}", info); 27 + println!("Received update event: {:#?}", info); 28 28 } 29 29 CommitEvent::Delete { info, commit } => { 30 - println ! ("Received delete event: {:#?}", info); 30 + println!("Received delete event: {:#?}", info); 31 31 } 32 32 } 33 33 }