Files
lez-programs/programs/ata/src/lib.rs
T

11 lines
158 B
Rust
Raw Normal View History

//! 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;