A decentralized event management and credentialing system built on atproto.
at main 15 lines 365 B view raw
1//! Acudo - A web application for event RSVP management. 2//! 3//! This application showcases events and allows visitors to RSVP using 4//! AT Protocol authentication and Tito for ticket purchasing. 5 6pub mod atproto; 7pub mod config; 8pub mod consumer; 9pub mod errors; 10pub mod event; 11pub mod http; 12pub mod identity_cache; 13pub mod process; 14pub mod storage; 15pub mod tito;