#![recursion_limit = "256"]
#![allow(clippy::type_complexity)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::declare_interior_mutable_const)]
#![cfg_attr(not(feature = "std"), no_std)]
#[macro_use]
extern crate derive_new;
pub mod bank;
pub mod bounty;
pub mod court;
pub mod organization;
pub mod share;
pub mod traits;
pub mod vote;