feat(sql,store): add Builder::new

ref: https://github.com/tauri-apps/tauri/issues/8880
This commit is contained in:
amrbashir
2024-02-19 15:54:56 +02:00
parent 696af68c9b
commit 72db444401
3 changed files with 14 additions and 0 deletions
+4
View File
@@ -209,6 +209,10 @@ impl<R: Runtime> Default for Builder<R> {
}
impl<R: Runtime> Builder<R> {
fn new() -> Self {
Self::default()
}
/// Registers a store with the plugin.
///
/// # Examples