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/governance.rs
// version: 4
//! `governance` executor family.
mod metadao_bid_wall;
mod metadao_futarchy;
mod squads_multisig;
/// Exposes the reserved `governance/metadao_bid_wall` executor.
pub use self::metadao_bid_wall::ExGovernanceMetadaoBidWallExecutor;
/// Exposes the reserved `governance/metadao_futarchy` executor.
pub use self::metadao_futarchy::ExGovernanceMetadaoFutarchyExecutor;
/// Exposes the reserved `governance/squads_multisig` executor.
pub use self::squads_multisig::ExGovernanceSquadsMultisigExecutor;