spl_token_group_interface/
lib.rs

1//! Crate defining the SPL Token Group Interface
2
3#![deny(missing_docs)]
4#![cfg_attr(not(test), forbid(unsafe_code))]
5
6pub mod error;
7pub mod instruction;
8pub mod state;
9
10/// Namespace for all programs implementing spl-token-group
11pub const NAMESPACE: &str = "spl_token_group_interface";