hylo_sdk/lib.rs
1#![allow(clippy::pub_underscore_fields)]
2
3extern crate anchor_lang;
4
5anchor_lang::declare_program!(hylo_exchange);
6anchor_lang::declare_program!(hylo_stability_pool);
7
8mod exchange_client;
9pub mod pda;
10mod stability_pool_client;
11pub mod util;
12
13pub mod exchange {
14 pub use super::exchange_client::*;
15 pub use super::hylo_exchange::*;
16}
17
18pub mod stability_pool {
19 pub use super::hylo_stability_pool::*;
20 pub use super::stability_pool_client::*;
21}