Files

9 lines
182 B
JavaScript
Raw Permalink Normal View History

2023-04-05 21:22:02 +10:00
/**
* Open a sqlite DB.
* @param filename {string} - file to open.
* @returns {Promise<void>}
*/
function Open(filename) {
return wails.Plugin("sqlite", "Open", filename);
}