1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod accounts;
pub mod errors;
pub mod generate_pda;
pub mod constants;
pub mod utils;
pub mod tests;
pub mod dvl_error;
pub mod instructions_data;
cfg_if::cfg_if! {
    if #[cfg(not(feature = "on-chain"))] {
        pub mod account_readers;
        pub mod dvl_off_chain_error;
        pub mod dvl_client;
    }
}