1
2
3
4
5
6
7
8
9
pub mod account_info;

#[cfg(feature = "anchor")]
pub mod cpi;

#[cfg(feature = "anchor")]
type FeatureResult<T> = anchor_lang::Result<T>;
#[cfg(not(feature = "anchor"))]
type FeatureResult<T> = Result<T, solana_program::program_error::ProgramError>;