Skip to main content

nice_plug/
wrapper.rs

1//! Wrappers for different plugin types. Each wrapper has an entry point macro that you can pass the
2//! name of a type that implements `Plugin` to. The macro will handle the rest.
3
4pub mod clap;
5pub(crate) mod state;
6pub(crate) mod util;
7
8#[cfg(feature = "standalone")]
9pub mod standalone;
10#[cfg(feature = "vst3")]
11pub mod vst3;
12
13// This is used by the wrappers.
14pub use util::setup_logger;