pub fn builder() -> Builder<VersoRuntime>
Expand description
Creates a new [tauri::Builder
] using the VersoRuntime
ยงExample:
fn main() {
// instead of `tauri::Builder::new()`
tauri_runtime_verso::builder()
.run(tauri::generate_context!())
.unwrap();
}