Files
khadhroony-bot3/ks-lib/src/executor/fees.rs
2026-08-09 19:34:08 +02:00

16 lines
490 B
Rust

// file: ks-lib/src/executor/fees.rs
// version: 4
//! `fees` executor family.
mod bags_fee_share_v1;
mod bags_fee_share_v2;
mod pump_fees;
/// Exposes the reserved `fees/bags_fee_share_v1` executor.
pub use self::bags_fee_share_v1::ExFeesBagsFeeShareV1Executor;
/// Exposes the reserved `fees/bags_fee_share_v2` executor.
pub use self::bags_fee_share_v2::ExFeesBagsFeeShareV2Executor;
/// Exposes the reserved `fees/pump_fees` executor.
pub use self::pump_fees::ExFeesPumpFeesExecutor;