mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-04-18 09:03:07 +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;
|