1 2 3 4 5 6 7 8 9 10
//! Crate defining the Token Collection program implementing the //! SPL Token Group interface. #![deny(missing_docs)] #![forbid(unsafe_code)] pub mod processor; #[cfg(not(feature = "no-entrypoint"))] mod entrypoint;