//! # Governance Module
//!
//! Cryptographic primitives for Bitcoin governance operations.
//!
//! This module provides the core governance functionality:
//! - Key generation and management
//! - Signature creation and verification
//! - Multisig threshold logic
//! - Message formats for governance decisions
// Re-export main types
pub use ;
pub use ;
pub use GovernanceMessage;
pub use Multisig;
pub use Signature;
pub use verify_signature;