Skip to main content

reformat_plugins/
lib.rs

1//! Plugin system for reformat transformers
2//!
3//! This crate provides the foundation for loading and managing
4//! custom transformation plugins.
5
6/// Plugin API placeholder for future implementation
7pub struct PluginManager {
8    // Will be implemented in future versions
9}
10
11impl PluginManager {
12    /// Creates a new plugin manager
13    pub fn new() -> Self {
14        PluginManager {}
15    }
16}
17
18impl Default for PluginManager {
19    fn default() -> Self {
20        Self::new()
21    }
22}