cronus_generator 0.3.0

The generators for cronus API spec.
Documentation
use crate::Generator;


pub struct TauriGenerator {
}

impl TauriGenerator {
    pub fn new() -> Self {
        Self {
           
        }
    }
}

impl Generator for TauriGenerator {
    fn name(&self) -> &'static str {
        return "tauri"
    }

}