tauriless 0.2.4

Run a Tauri-like application without installation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub trait Commands {
    fn register_commands(self, builder: wry::WebViewBuilder) -> wry::WebViewBuilder;
}

impl<F> Commands for F
where
    F: Fn(wry::WebViewBuilder) -> wry::WebViewBuilder,
{
    fn register_commands(self, builder: wry::WebViewBuilder) -> wry::WebViewBuilder {
        self(builder)
    }
}