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