collective 0.7.0

A CLI to automate work around Polkadot collective work reports.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: GPL-3.0-only
// SPDX-FileCopyrightText: Oliver Tale-Yazdi <oliver@tasty.limo>

mod collective;
mod evidence;
mod join_request;
mod member;
mod traits;
mod wish;

pub mod prelude {
	pub use super::{collective::*, evidence::*, join_request::*, member::*, traits::*, wish::*};
}