atlas_token_group_interface/
lib.rs

1//! Crate defining the ATLAS 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 atlas-token-group
11pub const NAMESPACE: &str = "atlas_token_group_interface";