//! Provides procedural macros for WSL plugin development.
use TokenStream;
/// Attribute macro for WSL plugin V1.
/// This macro should be used on impl block of `WSLPluginV1` in order to register the plugin that implement this interface
/// # Example
/// ``` rust, ignore
/// #[wsl_plugin_v1]
/// impl WSLPluginV1 for MyPlugin {
/// // Implementation details
/// }
/// ```