1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-3.0-only
// SPDX-FileCopyrightText: Oliver Tale-Yazdi <oliver@tasty.limo>

//! Generic types to define the structure of a Polkadot System Collective.

#![deny(missing_docs)]

pub mod cmd;
mod collective;
mod config;
mod prompt;
mod template;
mod tests;
mod types;