mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-07-17 19:29:27 +00:00
11 lines
179 B
Rust
11 lines
179 B
Rust
//! The Associated Token Account Program implementation.
|
|
|
|
pub use associated_token_account_core as core;
|
|
|
|
pub mod burn;
|
|
pub mod create;
|
|
pub mod transfer;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|