1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use crate::cfg_client;

mod error;
pub use error::SwitchboardError as SwitchboardAttestationError;

pub mod accounts;
pub use accounts::*;

pub mod instructions;
pub use instructions::*;

pub mod types;
pub use types::*;

pub mod events;
pub use events::*;

cfg_client! {
    mod client;
    pub use client::*;
}