mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-05 17:00:41 +08:00
9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
/**
|
|
* Open a sqlite DB.
|
|
* @param filename {string} - file to open.
|
|
* @returns {Promise<void>}
|
|
*/
|
|
function Open(filename) {
|
|
return wails.CallByID(147348976, filename);
|
|
}
|