You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
381 B
24 lines
381 B
/*
|
|
* @Author: YeeChan
|
|
* @Date: 2021-06-02 11:27:38
|
|
* @Description:
|
|
*/
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
load () {
|
|
// execute when package loaded
|
|
},
|
|
|
|
unload () {
|
|
// execute when package unloaded
|
|
},
|
|
|
|
// register your ipc messages here
|
|
messages: {
|
|
'open-panel'() {
|
|
Editor.Panel.open('sftp');
|
|
Editor.log(Editor.url("app://vue"));
|
|
},
|
|
},
|
|
}; |