16 lines
557 B
Rust
16 lines
557 B
Rust
// 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;
|