mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-02-20 05:13:10 +00:00
13 lines
189 B
Rust
13 lines
189 B
Rust
|
|
//! The Token Program implementation.
|
||
|
|
|
||
|
|
pub use token_core as core;
|
||
|
|
|
||
|
|
pub mod burn;
|
||
|
|
pub mod initialize;
|
||
|
|
pub mod mint;
|
||
|
|
pub mod new_definition;
|
||
|
|
pub mod print_nft;
|
||
|
|
pub mod transfer;
|
||
|
|
|
||
|
|
mod tests;
|