spl_token_collection/
lib.rs

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