1#[macro_use]
2extern crate log;
3
4pub mod extension;
5pub mod prelude;
6
7#[cfg(target_os = "windows")]
8pub const PLUGIN_EXTENSION: &str = "dll";
9#[cfg(target_os = "macos")]
10pub const PLUGIN_EXTENSION: &str = "dylib";
11#[cfg(target_os = "linux")]
12pub const PLUGIN_EXTENSION: &str = "so";