moc_rs/
lib.rs

1#![doc = include_str!("../README.md")]
2
3/// This module contains common enums and structs.
4pub mod common;
5/// The module containing all the useful stuff: the `Moc` struct and the most important trait
6/// in the whole crate
7pub mod moc;
8
9pub use common::{MocControl, MocInfo, MocSource, MocState};
10pub use moc::{Moc, MocInterface};