1//! Crate defining an example program for storing SPL token metadata
23#![allow(clippy::arithmetic_side_effects)]
4#![deny(missing_docs)]
5#![cfg_attr(not(test), forbid(unsafe_code))]
67pub mod processor;
89#[cfg(not(feature = "no-entrypoint"))]
10mod entrypoint;