0.5.1-pre.002

This commit is contained in:
2026-08-09 19:34:08 +02:00
parent 816eee59a9
commit 6a680767ae
767 changed files with 12257 additions and 12195 deletions

View File

@@ -0,0 +1,15 @@
// 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;