Skip to main content

rialo_s_spl_token_group_interface/
lib.rs

1// Copyright (c) Subzero Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3// This file is either (a) original to Subzero Labs, Inc. or (b) derived from the Anza codebase and modified by Subzero Labs, Inc.
4
5//! Crate defining the SPL Token Group Interface
6
7#![deny(missing_docs)]
8#![cfg_attr(not(test), forbid(unsafe_code))]
9
10pub mod error;
11pub mod instruction;
12pub mod state;
13
14/// Namespace for all programs implementing spl-token-group
15pub const NAMESPACE: &str = "rialo_s_spl_token_group_interface";