solana-flux-aggregator/src/lib.rs

16 lines
348 B
Rust

#![deny(missing_docs)]
#![forbid(unsafe_code)]
//! An Flux Aggregator program for the Solana blockchain
pub mod instruction;
pub mod processor;
pub mod error;
pub mod state;
#[cfg(not(feature = "no-entrypoint"))]
pub mod entrypoint;
// Export current sdk types for downstream users building with a different sdk version
pub use solana_program;