oil_fomo_api/lib.rs
1pub mod consts;
2pub mod error;
3pub mod event;
4pub mod instruction;
5pub mod sdk;
6pub mod state;
7pub mod utils;
8
9pub use sdk::*;
10
11pub mod prelude {
12 pub use crate::consts::*;
13 pub use crate::error::*;
14 pub use crate::event::*;
15 pub use crate::instruction::*;
16 pub use crate::sdk::*;
17 pub use crate::state::*;
18 pub use crate::utils::*;
19}
20
21use steel::*;
22
23declare_id!("fomo3yfXnFzXhajY5QRFmY7yauNg1oZbMBpWrKBVHB1");