Tauri Plugin Mongoose
This is a Tauri plugin library for Mongoose.
Rust Setup
Add the plugin to your Cargo.toml:
[]
= { = "../path/to/tauri-plugin-mongoose" }
Initialize the plugin in your main.rs:
JavaScript/TypeScript Setup
Install the package (once published or linked):
Usage:
import { ping } from 'tauri-plugin-mongoose';
ping("Hello").then(response => {
console.log(response);
});