gmsol_treasury/instructions/mod.rs
1/// Instructions for [`Config`](crate::states::Config).
2pub mod config;
3
4/// Instructions for [`TreasuryVaultConfig`](crate::states::TreasuryVaultConfig).
5pub mod treasury;
6
7/// Instructions for interacting with the store program.
8pub mod store;
9
10/// Instructions for GT bank.
11pub mod gt_bank;
12
13/// Instructions for swapping funds.
14pub mod swap;
15
16pub use config::*;
17pub use gt_bank::*;
18pub use store::*;
19pub use swap::*;
20pub use treasury::*;