diff --git a/js/trweb.js b/js/trweb.js index 0762251..910be7a 100644 --- a/js/trweb.js +++ b/js/trweb.js @@ -112,6 +112,10 @@ class trweb { addServer(name, url, user, pass) { this.#dom_servermanager.addServer(name, url, user, pass); } + + removeServer(name) { + this.#dom_servermanager.removeServer(name); + } } var trinstance = new trweb('trcontainer', null, null, function(msg) {console.info(`TRWEB: ${msg}`)});