Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
const { ipcMain: ipc } = require( 'electron' );
const WindowManager = require( '../../lib/window-manager' );
ipc.on( 'secrets', function ( ev, which ) {
which = parseInt( which, 10 );
if ( which === 0 ) {
WindowManager.openSecret();
} else if ( which === 1 ) {
WindowManager.openWapuu();
}
} );
module.exports = function () {};