mirror of
https://github.com/SillyTavern/SillyTavern-Launcher.git
synced 2026-03-10 05:49:48 +00:00
+added powershell version checker +added verification if user really want to exit launcher
8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
const { getVersion } = require('./util.js');
|
|
|
|
getVersion().then(version => {
|
|
console.log(JSON.stringify(version));
|
|
}).catch(err => {
|
|
console.error('Error getting version:', err);
|
|
});
|