Skip to main content

spl_token_group_interface/
lib.rs

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