migration to JS engine #1

Merged
akulij merged 131 commits from dev into main 2025-05-31 08:49:52 +00:00
Showing only changes of commit 9e99064bc5 - Show all commits

View File

@ -193,6 +193,10 @@ impl DB {
Ok(db) Ok(db)
} }
pub fn with_name(self, name: String) -> Self {
Self { name, ..self }
}
} }
pub trait DbCollection { pub trait DbCollection {