spl_token_group_example/
lib.rs

1//! Crate defining an example program for creating SPL token groups
2//! using the 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;