15 lines
215 B
JavaScript
15 lines
215 B
JavaScript
|
/*global Proxmox */
|
||
|
Ext.ns('PBS');
|
||
|
|
||
|
console.log("Starting Backup Server GUI");
|
||
|
|
||
|
Ext.define('PBS.Utils', {
|
||
|
singleton: true,
|
||
|
|
||
|
constructor: function() {
|
||
|
var me = this;
|
||
|
|
||
|
// do whatever you want here
|
||
|
}
|
||
|
});
|