mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-05-18 23:19:30 +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;
|