riptide_amm/lib.rs
1#![allow(unexpected_cfgs)]
2
3#[allow(clippy::all, unused_imports)]
4mod generated;
5mod math;
6mod pda;
7
8#[cfg(feature = "fetch")]
9mod gpa;
10
11#[cfg(feature = "fetch")]
12pub use generated::shared::*;
13pub use generated::{accounts::*, instructions::*, programs::*, types::*};
14
15#[cfg(feature = "fetch")]
16pub(crate) use generated::*;
17
18pub use math::*;
19pub use pda::*;
20
21#[cfg(feature = "fetch")]
22pub use gpa::*;