1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#![allow(clippy::type_complexity)]
#![cfg_attr(not(feature = "std"), no_std)]
//! `util` contains all behavior and relationships for all sunshine modules:
//! - [`shares-atomic`](../shares_atomic/index.html)
//! - [`vote-yesno`](../vote_yesno/index.html)
//! - [`bank`](../bank/index.html)

pub mod bank;
pub mod bounty;
pub mod court;
pub mod organization;
pub mod petition;
pub mod proposal;
pub mod schedule;
pub mod share;
pub mod traits;
pub mod uuid;
pub mod voteyesno;