mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-03-22 11:53:05 +00:00
19 lines
314 B
Rust
19 lines
314 B
Rust
//! The AMM Program implementation.
|
|
|
|
#![expect(
|
|
clippy::arithmetic_side_effects,
|
|
clippy::integer_division,
|
|
clippy::integer_division_remainder_used,
|
|
reason = "TODO: Fix later"
|
|
)]
|
|
|
|
pub use amm_core as core;
|
|
|
|
pub mod add;
|
|
pub mod new_definition;
|
|
pub mod remove;
|
|
pub mod swap;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|